Skip to content

Commit dcaf19a

Browse files
authored
Merge pull request #279 from nf-core/outdir_fix
Changed default outdir to null
2 parents 7bc16f0 + ba2edce commit dcaf19a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

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

1616
- Fixed error that caused mismapping of IgG controls to their targets in certain samplesheet configurations.
17+
- Changed the default output directory to `null` to conform with other nf-core workflows [#279](https://github.com/nf-core/cutandrun/pull/279)
1718

1819
## [3.2.1] - 2023-10-22
1920

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ params {
129129
blacklist = null
130130

131131
// Boilerplate options
132-
outdir = "./results"
132+
outdir = null
133133
publish_dir_mode = 'copy'
134134
email = null
135135
email_on_fail = null

nextflow_schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
"type": "string",
2828
"format": "directory-path",
2929
"description": "The output directory where the results will be saved. You have to use absolute paths to store on Cloud infrastructure.",
30-
"fa_icon": "fas fa-folder-open",
31-
"default": "./results"
30+
"fa_icon": "fas fa-folder-open"
3231
},
3332
"multiqc_title": {
3433
"type": "string",

0 commit comments

Comments
 (0)