Skip to content

Commit

Permalink
Bugfix. ensembl was hardcoded
Browse files Browse the repository at this point in the history
  • Loading branch information
jlanga committed May 27, 2019
1 parent deae088 commit 607470f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/compare_to_gff3
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if __name__ == '__main__':
)

# Process GFF3
BED3_TRUE = gff3_to_bed3(ARGS['input_gff3'], mode='ensembl')
BED3_TRUE = gff3_to_bed3(ARGS['input_gff3'], mode=ARGS['gff3_type'])

# Filter out transcripts not present in the reference
TRANSCRIPT_IDS = fasta_to_dict(ARGS['fasta']).keys()
Expand Down
2 changes: 1 addition & 1 deletion exfi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
filters.
"""

__version__ = '1.5.5'
__version__ = '1.5.6'

0 comments on commit 607470f

Please sign in to comment.