Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix --three_prime_clip_r{1,2} parameter documentation (fixes #1382) #1383

Merged
merged 6 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1351](https://github.com/nf-core/sarek/pull/1351) - Fix params name for test profiles (`bcftools_annotations`)
- [#1357](https://github.com/nf-core/sarek/pull/1364) - Fixed bug where samples were dropped while reconstituting BAM files
- [#1373](https://github.com/nf-core/sarek/pull/1373) - Add `chr` prefix to NCBench bed file & enable trimming
- [#1373](https://github.com/nf-core/sarek/pull/1381) - Swap NGSCheckMate bed file for GATK.GRCh37 to one without the `chr` prefix
- [#1381](https://github.com/nf-core/sarek/pull/1381) - Swap NGSCheckMate bed file for GATK.GRCh37 to one without the `chr` prefix
- [#1383](https://github.com/nf-core/sarek/pull/1383) - Fix `--three_prime_clip_r{1,2}` parameter documentation
maxulysse marked this conversation as resolved.
Show resolved Hide resolved
- [#1390](https://github.com/nf-core/sarek/pull/1390) - Fix badges in README

### Removed

Expand Down
4 changes: 2 additions & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,15 @@
"default": 0,
"fa_icon": "fas fa-cut",
"description": "Remove bp from the 3' end of read 1",
"help_text": "This may remove some unwanted bias from the 3'. Corresponds to the FastP flag `--three_prime_clip_r1`.",
"help_text": "This may remove some unwanted bias from the 3'. Corresponds to the FastP flag `--trim_tail1`.",
"hidden": true
},
"three_prime_clip_r2": {
"type": "integer",
"default": 0,
"fa_icon": "fas fa-cut",
"description": "Remove bp from the 3' end of read 2",
"help_text": "This may remove some unwanted bias from the 3' end. Corresponds to the FastP flag `--three_prime_clip_r2`.",
"help_text": "This may remove some unwanted bias from the 3' end. Corresponds to the FastP flag `--trim_tail2`.",
"hidden": true
},
"trim_nextseq": {
Expand Down