Skip to content

Commit

Permalink
Merge pull request #1383 from tdanhorn/dev
Browse files Browse the repository at this point in the history
Fix `--three_prime_clip_r{1,2}` parameter documentation (fixes #1382)
  • Loading branch information
maxulysse committed Feb 6, 2024
2 parents 2227647 + e5f48b7 commit 8fba43d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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
- [#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

0 comments on commit 8fba43d

Please sign in to comment.