Skip to content

Commit

Permalink
Make changes to gtf-to-bed process
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellevstek committed Dec 19, 2024
1 parent 16e03ad commit 79b197c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Added
- Use generic permission filters when filtering variants by related models
- Return only distinct ``VariantExperiment`` objects

Changed
-------
- Change output data object name in ``gtf-to-bed`` process
and hide canonical transcripts table if gene feature type is selected


===================
61.0.0 - 2024-11-21
Expand Down
5 changes: 3 additions & 2 deletions resolwe_bio/processes/support_processors/gtf_to_bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ class GTFtoBED(Process):
slug = "gtf-to-bed"
name = "GTF to BED"
process_type = "data:bed"
version = "1.1.0"
version = "1.2.0"
category = "Other"
data_name = "Converted GTF to BED file"
data_name = "{{ geneset|name|default('?') }}"
scheduling_class = SchedulingClass.BATCH
persistence = Persistence.CACHED

Expand Down Expand Up @@ -108,6 +108,7 @@ class Input:
label="Canonical transcripts",
description="Canonical transcripts to use for filtering. Only used for transcript and exon feature types.",
required=False,
disabled="feature_type == 'gene'",
)

output_strand = BooleanField(
Expand Down

0 comments on commit 79b197c

Please sign in to comment.