Skip to content

Commit 9d66f0e

Browse files
committed
Revert "Actually, let's make non-use of iGenomes the default"
This reverts commit c4e17a6.
1 parent 7b063e3 commit 9d66f0e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/usage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ nextflow run \
206206
--outdir <OUTDIR> \
207207
--gtf <GTF> \
208208
--fasta <GENOME FASTA> \
209+
--igenomes_ignore \
210+
--genome null \
209211
-profile docker
210212
```
211213

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ params {
2222
gencode = false
2323
save_reference = false
2424
igenomes_base = 's3://ngi-igenomes/igenomes'
25-
load_igenomes = false
25+
igenomes_ignore = false
2626

2727
// UMI handling
2828
with_umi = false
@@ -266,7 +266,7 @@ plugins {
266266
}
267267

268268
// Load igenomes.config if required
269-
if (params.load_igenomes) {
269+
if (!params.igenomes_ignore) {
270270
includeConfig 'conf/igenomes.config'
271271
} else {
272272
params.genomes = [:]

nextflow_schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,12 +331,12 @@
331331
"fa_icon": "fas fa-cloud-download-alt",
332332
"hidden": true
333333
},
334-
"load_igenomes": {
334+
"igenomes_ignore": {
335335
"type": "boolean",
336-
"description": "Load the iGenomes reference config.",
336+
"description": "Do not load the iGenomes reference config.",
337337
"fa_icon": "fas fa-ban",
338338
"hidden": true,
339-
"help_text": "Load `igenomes.config` when running the pipeline. You may choose this option if you want to use iGenomes reference configurations like `--genome GRCh38` rather than explicit reference file provision."
339+
"help_text": "Do not load `igenomes.config` when running the pipeline. You may choose this option if you observe clashes between custom parameters and those supplied in `igenomes.config`."
340340
}
341341
},
342342
"required": ["fasta"]

0 commit comments

Comments
 (0)