Skip to content

Commit ea11548

Browse files
committed
Remove --enable_conda
1 parent 00bd393 commit ea11548

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
### Enhancements & fixes
99

10+
- Bump minimum Nextflow version from `21.10.3` -> `22.10.1`
1011
- Updated pipeline template to [nf-core/tools 2.7.1](https://github.com/nf-core/tools/releases/tag/2.7.1)
1112

13+
### Parameters
14+
15+
| Old parameter | New parameter |
16+
| --------------------------- | ------------------------------ |
17+
| `--enable_conda` | |
18+
19+
> **NB:** Parameter has been **updated** if both old and new parameter information is present.
20+
> **NB:** Parameter has been **added** if just the new parameter information is present.
21+
> **NB:** Parameter has been **removed** if new parameter information isn't present.
22+
1223
## [[3.9](https://github.com/nf-core/rnaseq/releases/tag/3.9)] - 2022-09-30
1324

1425
### Enhancements & fixes

nextflow.config

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ params {
110110
validate_params = true
111111
show_hidden_params = false
112112
schema_ignore_params = 'genomes'
113-
enable_conda = false
114113

115114
// Config options
116115
custom_config_version = 'master'
@@ -147,7 +146,6 @@ try {
147146
profiles {
148147
debug { process.beforeScript = 'echo $HOSTNAME' }
149148
conda {
150-
params.enable_conda = true
151149
conda.enabled = true
152150
docker.enabled = false
153151
singularity.enabled = false
@@ -156,7 +154,6 @@ profiles {
156154
charliecloud.enabled = false
157155
}
158156
mamba {
159-
params.enable_conda = true
160157
conda.enabled = true
161158
conda.useMamba = true
162159
docker.enabled = false

nextflow_schema.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -706,12 +706,6 @@
706706
"description": "Show all params when using `--help`",
707707
"hidden": true,
708708
"help_text": "By default, parameters set as _hidden_ in the schema are not shown on the command line when a user runs with `--help`. Specifying this option will tell the pipeline to show all parameters."
709-
},
710-
"enable_conda": {
711-
"type": "boolean",
712-
"description": "Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.",
713-
"hidden": true,
714-
"fa_icon": "fas fa-bacon"
715709
}
716710
}
717711
}

0 commit comments

Comments
 (0)