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
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
### `Added`
9
9
10
-
-[#676](https://github.com/nf-core/eager/issues/676) - Added Lib Checks and automatic help message / summary message formatting
10
+
-[#676](https://github.com/nf-core/eager/issues/676) - Refactor help message / summary message formatting to automatic versions using nf-core library
11
+
-[#682](https://github.com/nf-core/eager/issues/682) - Add AdapterRemoval `--qualitymax` flag to allow FASTQ Phred score range max more than 41
Copy file name to clipboardExpand all lines: nextflow_schema.json
+7-18Lines changed: 7 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -181,17 +181,6 @@
181
181
"copyNoFollow",
182
182
"move"
183
183
]
184
-
},
185
-
"saveTrimmed": {
186
-
"type": "boolean",
187
-
"default": true,
188
-
"description": "Turn this on if you want to keep trimmed reads.",
189
-
"hidden": true
190
-
},
191
-
"saveAlignedIntermediates": {
192
-
"type": "boolean",
193
-
"description": "Turn this on if you want to keep intermediate alignment files (SAM, BAM, non-dedupped BAM)",
194
-
"hidden": true
195
184
}
196
185
},
197
186
"fa_icon": "fas fa-cloud-download-alt"
@@ -511,6 +500,13 @@
511
500
"description": "Only use merged reads downstream (un-merged reads and singletons are discarded).",
512
501
"fa_icon": "fas fa-handshake",
513
502
"help_text": "Specify that only merged reads are sent downstream for analysis.\n\nSingletons (i.e. reads missing a pair), or un-merged reads (where there wasn't sufficient overlap) are discarded.\n\nYou may want to use this if you want ensure only the best quality reads for your analysis, but with the penalty of potentially losing still valid data (even if some reads have slightly lower quality). It is highly recommended when using `--dedupper 'dedup'` (see below)."
503
+
},
504
+
"qualitymax": {
505
+
"type": "integer",
506
+
"description": "Specify the maximum Phred score used in input FASTQ files",
507
+
"help_text": "Specify maximum Phred score of the quality field of FASTQ files. The quality-score range can vary depending on the machine and version (e.g. see diagram [here](https://en.wikipedia.org/wiki/FASTQ_format#Encoding), and this allows you to increase from the default AdapterRemoval value of `41`.\n\n> Modifies AdapterRemoval parameters: `--qualitymax`",
508
+
"default": 41,
509
+
"fa_icon": "fas fa-arrow-up"
514
510
}
515
511
},
516
512
"fa_icon": "fas fa-cut",
@@ -605,7 +601,6 @@
605
601
"bt2n": {
606
602
"type": "integer",
607
603
"description": "Specify the -N parameter for bowtie2 (mismatches in seed). This will override defaults from alignmode/sensitivity.",
608
-
"default": 0,
609
604
"fa_icon": "fas fa-sort-numeric-down",
610
605
"help_text": "The number of mismatches allowed in the seed during seed-and-extend procedure of Bowtie2. This will override any values set with `--bt2_sensitivity`. Can either be 0 or 1. Default: 0 (i.e. use`--bt2_sensitivity` defaults).\n\n> Modifies Bowtie2 parameters: `-N`",
611
606
"enum": [
@@ -615,21 +610,18 @@
615
610
},
616
611
"bt2l": {
617
612
"type": "integer",
618
-
"default": 0,
619
613
"description": "Specify the -L parameter for bowtie2 (length of seed substrings). This will override defaults from alignmode/sensitivity.",
620
614
"fa_icon": "fas fa-ruler-horizontal",
621
615
"help_text": "The length of the seed sub-string to use during seeding. This will override any values set with `--bt2_sensitivity`. Default: 0 (i.e. use`--bt2_sensitivity` defaults: [20 for local and 22 for end-to-end](http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml#command-line).\n\n> Modifies Bowtie2 parameters: `-L`"
622
616
},
623
617
"bt2_trim5": {
624
618
"type": "integer",
625
-
"default": 0,
626
619
"description": "Specify number of bases to trim off from 5' (left) end of read before alignment.",
627
620
"fa_icon": "fas fa-cut",
628
621
"help_text": "Number of bases to trim at the 5' (left) end of read prior alignment. Maybe useful when left-over sequencing artefacts of in-line barcodes present Default: 0\n\n> Modifies Bowtie2 parameters: `-bt2_trim5`"
629
622
},
630
623
"bt2_trim3": {
631
624
"type": "integer",
632
-
"default": 0,
633
625
"description": "Specify number of bases to trim off from 3' (right) end of read before alignment.",
634
626
"fa_icon": "fas fa-cut",
635
627
"help_text": "Number of bases to trim at the 3' (right) end of read prior alignment. Maybe useful when left-over sequencing artefacts of in-line barcodes present Default: 0.\n\n> Modifies Bowtie2 parameters: `-bt2_trim3`"
@@ -680,14 +672,12 @@
680
672
},
681
673
"bam_mapping_quality_threshold": {
682
674
"type": "integer",
683
-
"default": 0,
684
675
"description": "Minimum mapping quality for reads filter.",
685
676
"fa_icon": "fas fa-greater-than-equal",
686
677
"help_text": "Specify a mapping quality threshold for mapped reads to be kept for downstream analysis. By default keeps all reads and is therefore set to `0` (basically doesn't filter anything).\n\n> Modifies samtools view parameter: `-q`"
687
678
},
688
679
"bam_filter_minreadlength": {
689
680
"type": "integer",
690
-
"default": 0,
691
681
"fa_icon": "fas fa-ruler-horizontal",
692
682
"description": "Specify minimum read length to be kept after mapping.",
693
683
"help_text": "Specify minimum length of mapped reads. This filtering will apply at the same time as mapping quality filtering.\n\nIf used _instead_ of minimum length read filtering at AdapterRemoval, this can be useful to get more realistic endogenous DNA percentages, when most of your reads are very short (e.g. in single-stranded libraries) and would otherwise be discarded by AdapterRemoval (thus making an artificially small denominator for a typical endogenous DNA calculation). Note in this context you should not perform mapping quality filtering nor discarding of unmapped reads to ensure a correct denominator of all reads, for the endogenous DNA calculation.\n\n> Modifies filter_bam_fragment_length.py parameter: `-l`"
@@ -1046,7 +1036,6 @@
1046
1036
},
1047
1037
"freebayes_g": {
1048
1038
"type": "integer",
1049
-
"default": 0,
1050
1039
"description": "Specify to skip over regions of high depth by discarding alignments overlapping positions where total read depth is greater than specified in --freebayes_C.",
1051
1040
"fa_icon": "fab fa-think-peaks",
1052
1041
"help_text": "Specify to skip over regions of high depth by discarding alignments overlapping positions where total read depth is greater than specified C. Not set by default.\n\n> Modifies freebayes parameter: `-g`"
0 commit comments