File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
nf_core/pipeline-template/docs Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2222- Fix some typos and improve writing in ` usage.md ` and ` CONTRIBUTING.md ` ([ #3302 ] ( https://github.com/nf-core/tools/pull/3302 ) )
2323- Add ` manifest.contributors ` to ` nextflow.config ` ([ #3311 ] ( https://github.com/nf-core/tools/pull/3311 ) )
2424- Update template components ([ #3328 ] ( https://github.com/nf-core/tools/pull/3328 ) )
25+ - Template: Remove mention of GRCh37 if igenomes is skipped ([ #3330 ] ( https://github.com/nf-core/tools/pull/3330 ) )
2526
2627### Download
2728
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ An [example samplesheet](../assets/samplesheet.csv) has been provided with the p
6161The typical command for running the pipeline is as follows:
6262
6363``` bash
64- nextflow run {{ name }} --input ./samplesheet.csv --outdir ./results --genome GRCh37 -profile docker
64+ nextflow run {{ name }} --input ./samplesheet.csv --outdir ./results {% if igenomes %} --genome GRCh37{% endif %} -profile docker
6565` ` `
6666
6767This will launch the pipeline with the ` docker` configuration profile. See below for more information about profiles.
9393` ` ` yaml title=" params.yaml"
9494input: ' ./samplesheet.csv'
9595outdir: ' ./results/'
96+ {% if igenomes -%}
9697genome: ' GRCh37'
98+ {% endif -%}
9799< ...>
98100` ` `
99101
You can’t perform that action at this time.
0 commit comments