Skip to content

Commit

Permalink
Merge pull request #1210 from ErikDanielsson/update-nextflow-link
Browse files Browse the repository at this point in the history
Update Nextflow installation link in pipeline template
  • Loading branch information
drpatelh authored Jul 16, 2021
2 parents 5342803 + 59d2d80 commit c7bd944
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Template

* Update Nextflow installation link in pipeline template ([#1201](https://github.com/nf-core/tools/issues/1201))

### General

### Modules
Expand Down
9 changes: 6 additions & 3 deletions nf_core/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,14 @@ def bump_nextflow_version(pipeline_obj, new_version):
r"nextflow%20DSL2-%E2%89%A5{}-23aa62.svg".format(current_version.replace(".", r"\.")),
"nextflow%20DSL2-%E2%89%A5{}-23aa62.svg".format(new_version),
),
(
# Replace links to 'nf-co.re' installation page with links to Nextflow installation page
r"https://nf-co.re/usage/installation",
"https://www.nextflow.io/docs/latest/getstarted.html#installation",
),
(
# example: 1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=20.04.0`)
r"1\.\s*Install\s*\[`Nextflow`\]\(https://www.nextflow.io/docs/latest/getstarted.html#installation\)\s*\(`>={}`\)".format(
current_version.replace(".", r"\.")
),
r"1\.\s*Install\s*\[`Nextflow`\]\(y\)\s*\(`>={}`\)".format(current_version.replace(".", r"\.")),
"1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>={}`)".format(
new_version
),
Expand Down
2 changes: 1 addition & 1 deletion nf_core/pipeline-template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ On release, automated continuous integration tests run the pipeline on a full-si

## Quick Start

1. Install [`Nextflow`](https://nf-co.re/usage/installation) (`>=21.04.0`)
1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=21.04.0`)

2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(please only use [`Conda`](https://conda.io/miniconda.html) as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_

Expand Down

0 comments on commit c7bd944

Please sign in to comment.