We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f313181 commit efb7a5dCopy full SHA for efb7a5d
code/python/globalsearch/rnaseq/run_star_salmon.py
@@ -40,6 +40,10 @@ def __init__(self, config):
40
self.sjdbGTFtagExonParentGene = star_options['sjdbGTFtagExonParentGene']
41
except:
42
self.sjdbGTFtagExonParentGene = None
43
+ try:
44
+ sjdbGTFtagExonParentTranscript = star_options['sjdbGTFtagExonParentTranscript']
45
+ except:
46
+ self.sjdbGTFtagExonParentTranscript = None
47
try:
48
self.quantMode = star_options['quantMode']
49
0 commit comments