Skip to content

Commit

Permalink
Merge pull request #3146 from naumenko-sa/fix_3135
Browse files Browse the repository at this point in the history
fix salmon input for rRNA calculation
  • Loading branch information
naumenko-sa committed Mar 24, 2020
2 parents a0db761 + 2321575 commit 69bc24d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bcbio/qc/qualimap.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def _detect_rRNA(data, out_dir):
if not quant:
salmon_dir = dd.get_salmon_dir(data)
if salmon_dir:
quant = os.path.join(salmon_dir, "quant", "quant.sf")
quant = os.path.join(salmon_dir, "quant.sf")
logger.info("Calculating RNA-seq rRNA metrics for %s." % quant)
rrna_features = gtf.get_rRNA(gtf_file)
transcripts = set([x[1] for x in rrna_features if x])
Expand Down

0 comments on commit 69bc24d

Please sign in to comment.