Skip to content

Commit

Permalink
Actually, let's make non-use of iGenomes the default
Browse files Browse the repository at this point in the history
  • Loading branch information
pinin4fjords committed Sep 4, 2023
1 parent 9cd7b3a commit c4e17a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,6 @@ nextflow run \
--outdir <OUTDIR> \
--gtf <GTF> \
--fasta <GENOME FASTA> \
--igenomes_ignore \
--genome null \
-profile docker
```

Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ params {
gencode = false
save_reference = false
igenomes_base = 's3://ngi-igenomes/igenomes'
igenomes_ignore = false
load_igenomes = false

// UMI handling
with_umi = false
Expand Down Expand Up @@ -266,7 +266,7 @@ plugins {
}

// Load igenomes.config if required
if (!params.igenomes_ignore) {
if (params.load_igenomes) {
includeConfig 'conf/igenomes.config'
} else {
params.genomes = [:]
Expand Down
6 changes: 3 additions & 3 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@
"fa_icon": "fas fa-cloud-download-alt",
"hidden": true
},
"igenomes_ignore": {
"load_igenomes": {
"type": "boolean",
"description": "Do not load the iGenomes reference config.",
"description": "Load the iGenomes reference config.",
"fa_icon": "fas fa-ban",
"hidden": true,
"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`."
"help_text": "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`."
}
},
"required": ["fasta"]
Expand Down

0 comments on commit c4e17a6

Please sign in to comment.