Skip to content

Commit

Permalink
Merge pull request #68 from jlanga/devel
Browse files Browse the repository at this point in the history
Bugfix. ensembl was hardcoded
  • Loading branch information
jlanga authored May 27, 2019
2 parents 2685ee0 + 607470f commit 33e300a
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 33e300a

Please sign in to comment.