Skip to content

Commit

Permalink
fix aligner for multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 9, 2024
1 parent 6e93d28 commit 209c2bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion snakePipes/workflows/mRNA-seq/mRNA-seq
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ def main():
if "allelic-counting" in modeTemp and not args.fromBAM:
warnings.warn("--fromBAM is required with allelic-counting mode. Setting to True.")
args.fromBAM = True
args.aligner = "EXTERNAL_BAM"
if "allelic-counting" in modeTemp:
args.bamExt = ".sorted.bam"
args.aligner = "allelic_bams"
if args.rMats and not args.sampleSheet:
sys.exit("--rMats flag requires a sampleSheet (specified with --sampleSheet).\n")
if "three_prime_seq" in mode:
Expand Down

0 comments on commit 209c2bf

Please sign in to comment.