Skip to content

Commit b49dbcd

Browse files
committed
Fix #897
1 parent 721d772 commit b49dbcd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Bump minimum Nextflow version from `21.10.3` -> `22.10.1`
1111
- Updated pipeline template to [nf-core/tools 2.7.1](https://github.com/nf-core/tools/releases/tag/2.7.1)
12+
- [[#897](https://github.com/nf-core/rnaseq/issues/897)] - Use `--skip_preseq` by default
1213

1314
### Parameters
1415

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ params {
7979
skip_bigwig = false
8080
skip_stringtie = false
8181
skip_fastqc = false
82-
skip_preseq = false
82+
skip_preseq = true
8383
skip_dupradar = false
8484
skip_qualimap = false
8585
skip_rseqc = false

nextflow_schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@
485485
"skip_preseq": {
486486
"type": "boolean",
487487
"description": "Skip Preseq.",
488-
"fa_icon": "fas fa-fast-forward"
488+
"fa_icon": "fas fa-fast-forward",
489+
"default": true
489490
},
490491
"skip_dupradar": {
491492
"type": "boolean",

0 commit comments

Comments
 (0)