Skip to content

Commit ea55c5f

Browse files
pinin4fjordsclaude
andcommitted
fix: Move --outReadsUnmapped Fastx to shared section for parabricks
This conditional was inside the !isPbrun gate, so pbrun would never get the flag even when save_unaligned or contaminant_screening is set. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0cf46ec commit ea55c5f

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

subworkflows/local/align_star/nextflow.config

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ process {
5050
: ['--quantTranscriptomeBan Singleend']
5151
}
5252

53-
if (params.save_unaligned || params.contaminant_screening) {
54-
args += ['--outReadsUnmapped Fastx']
55-
}
53+
}
54+
55+
if (params.save_unaligned || params.contaminant_screening) {
56+
args += ['--outReadsUnmapped Fastx']
5657
}
5758

5859
// For prokaryotic data, use CDS features and disable spliced alignment

0 commit comments

Comments
 (0)