Skip to content

Commit 6dd7521

Browse files
committed
Fixing save unaligned default
1 parent 102152e commit 6dd7521

File tree

4 files changed

+62
-5
lines changed

4 files changed

+62
-5
lines changed

modules.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@
7373
"hisat2/align": {
7474
"branch": "master",
7575
"git_sha": "2c6b1144ed58b6184ad58fc4e6b6a90219b4bf4f",
76-
"installed_by": ["fastq_align_hisat2"]
76+
"installed_by": ["fastq_align_hisat2"],
77+
"patch": "modules/nf-core/hisat2/align/hisat2-align.diff"
7778
},
7879
"hisat2/build": {
7980
"branch": "master",

modules/nf-core/hisat2/align/hisat2-align.diff

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/hisat2/align/main.nf

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

subworkflows/local/align_star/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (!params.skip_alignment && params.aligner == 'star_salmon') {
2222
--outSAMattributes NH HI AS NM MD
2323
--quantTranscriptomeBan Singleend
2424
--outSAMstrandField intronMotif
25-
${params.save_unaligned ? '--outReadsUnmapped Fastx' : ''}
25+
${params.save_unaligned || params.contaminant_screening ? '--outReadsUnmapped Fastx' : ''}
2626
""".trim())
2727

2828
// Consolidate the extra arguments

0 commit comments

Comments
 (0)