Skip to content

Commit

Permalink
Fixes #103, probbaly caused by new HTseq version
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Aug 3, 2022
1 parent afd5cdd commit 63cff73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DCC/Circ_nonCirc_Exon_Match.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def modifyExon_id(self, exon_gtf_file):
# if gff:
# custom_exon_id = ';custom_exon_id'+'='+feature.attr['transcript_id']+':'+str(exon_number[feature.attr['transcript_id']])
# else:
custom_exon_id = '; custom_exon_id' + ' ' + '"' + feature.attr['transcript_id'] + ':' + str(
exon_number[feature.attr['transcript_id']]) + '"'
custom_exon_id = '; custom_exon_id' + ' ' + feature.attr['transcript_id'] + ':' + str(
exon_number[feature.attr['transcript_id']])
except KeyError:
# Try assume gff format
try:
Expand Down

0 comments on commit 63cff73

Please sign in to comment.