You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
56
56
*[#516](https://github.com/nf-core/eager/issues/516) - Made bedtools not report out of memory exit code when warning of inconsistant FASTA/Bed entry names
57
57
*[#504](https://github.com/nf-core/eager/issues/504) - Removed uninformative sexdeterrmine-snps plot from MultiQC report.
58
58
* Nuclear contamination is now reported with the correct library names.
59
+
*[#531](https://github.com/nf-core/eager/pull/531) - Renamed 'FASTQ stripping' to 'host removal'
59
60
* Merged all tutorials and FAQs into `usage.md` for display on nf-co.re
60
61
* Corrected header of nuclear contamination table (`nuclear_contamination.txt`).
61
62
* Fixed a bug with `nSNPs` definition in `print_x_contamination.py`. Number of SNPs now correctly reported.
Copy file name to clipboardExpand all lines: main.nf
+31-32Lines changed: 31 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -95,9 +95,9 @@ def helpMessage() {
95
95
--bt2_trim5 [num] Specify number of bases to trim off from 5' (left) end of read before alignment. Default: ${params.bt2_trim5}
96
96
--bt2_trim3 [num] Specify number of bases to trim off from 3' (right) end of read before alignment. Default: ${params.bt2_trim3}
97
97
98
-
Stripping
99
-
--strip_input_fastq [bool] Turn on creation of per-library pre-Adapter Removal FASTQ files without reads that mapped to reference (e.g. for public upload of privacy sensitive non-host data).
100
-
--strip_mode [str] Stripping mode. Remove mapped reads completely from FASTQ (strip) or just mask mapped reads sequence by N (replace). Default: '${params.strip_mode}'
98
+
Host removal
99
+
--hostremoval_input_fastq [bool] Turn on creating pre-Adapter Removal FASTQ files without reads that mapped to reference (e.g. for public upload of privacy sensitive non-host data)
100
+
--hostremoval_mode [str] Host DNA Removal mode. Remove mapped reads completely from FASTQ (remove) or just mask mapped reads sequence by N (replace). Default: '${params.hostremoval_mode}'
101
101
102
102
BAM Filtering
103
103
--run_bam_filtering [bool] Turn on filtering of mapping quality, read lengths, or unmapped reads of BAM files.
Copy file name to clipboardExpand all lines: nextflow_schema.json
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -570,24 +570,24 @@
570
570
},
571
571
"fa_icon": "fas fa-layer-group"
572
572
},
573
-
"stripping": {
574
-
"title": "Stripping",
573
+
"host_removal": {
574
+
"title": "Removal of Host-Mapped Reads",
575
575
"type": "object",
576
576
"description": "Options for production of host-read removed FASTQ files for privacy reasons.",
577
577
"default": "",
578
578
"properties": {
579
-
"strip_input_fastq": {
579
+
"hostremoval_input_fastq": {
580
580
"type": "boolean",
581
581
"description": "Turn on per-library creation pre-Adapter Removal FASTQ files without reads that mapped to reference (e.g. for public upload of privacy sensitive non-host data)",
582
582
"fa_icon": "fas fa-power-off",
583
583
"help_text": "Create pre-Adapter Removal FASTQ files without reads that mapped to reference (e.g. for public upload of privacy sensitive non-host data)\n"
584
584
},
585
-
"strip_mode": {
585
+
"hostremoval_mode": {
586
586
"type": "string",
587
-
"default": "strip",
588
-
"description": "Stripping mode. Remove mapped reads completely from FASTQ (strip) or just mask mapped reads sequence by N (replace).",
587
+
"default": "remove",
588
+
"description": "Host removal mode. Remove mapped reads completely from FASTQ (remove) or just mask mapped reads sequence by N (replace).",
589
589
"fa_icon": "fas fa-mask",
590
-
"help_text": "Read removal mode. Strip mapped reads completely (`'strip'`) or just replace mapped reads sequence by N (`'replace'`)\n"
590
+
"help_text": "Read removal mode. Remove mapped reads completely (`'remove'`) or just replace mapped reads sequence by N (`'replace'`)\n"
0 commit comments