Skip to content

Commit

Permalink
fixed bug in circRNA annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevinzjy committed Apr 7, 2020
1 parent 4eceab2 commit 7f168e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CIRIquant/circ.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ def circRNA_attr(gtf_index, circ):
circ_type['gene_intergenic'] = 1

field = {}
if 'exon' in circ_type or 'gene_intergenic':
if 'exon' in circ_type:
field['circ_type'] = 'exon'
elif 'intron' in circ_type:
field['circ_type'] = 'intron'
Expand Down
2 changes: 1 addition & 1 deletion CIRIquant/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.1'
__version__ = '1.0.2'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Maintainer: Jinyang Zhang

### Release Notes ###

- Version 1.0.2: Fixed bug in circRNA annotation
- Version 1.0.1: Fixed bug, sync version number with pypi.org
- Version 1.0: The first released version of CIRIquant

Expand Down

0 comments on commit 7f168e4

Please sign in to comment.