Skip to content

Commit efb7a5d

Browse files
committed
added missing parent exon transcript parameter
1 parent f313181 commit efb7a5d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

code/python/globalsearch/rnaseq/run_star_salmon.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ def __init__(self, config):
4040
self.sjdbGTFtagExonParentGene = star_options['sjdbGTFtagExonParentGene']
4141
except:
4242
self.sjdbGTFtagExonParentGene = None
43+
try:
44+
sjdbGTFtagExonParentTranscript = star_options['sjdbGTFtagExonParentTranscript']
45+
except:
46+
self.sjdbGTFtagExonParentTranscript = None
4347
try:
4448
self.quantMode = star_options['quantMode']
4549
except:

0 commit comments

Comments
 (0)