Skip to content

Commit 5cec4e8

Browse files
christopher-hakkaartmashehu
authored andcommitted
Update some links
1 parent e56769b commit 5cec4e8

9 files changed

Lines changed: 9 additions & 13 deletions

File tree

sites/docs/src/content/docs/developing/components/cross-org-components.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,3 @@ This enables the flexible syntax shown above.
5656
"minItems": 0
5757
},
5858
```
59-
60-
:::tip
61-
You can find a complete schema example in the [nf-core-test repository](https://github.com/nf-core/nf-core-test).
62-
:::

sites/docs/src/content/docs/developing/tutorials/writing-nf-core-modules/2-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You should already be familiar with:
1919
You need the following installed or set up:
2020

2121
- [Nextflow](https://www.nextflow.io/docs/latest/install.html).
22-
- [nf-core tools](https://nf-co.re/docs/nf-core-tools/installation).
22+
- [nf-core tools](https://nf-co.re/docs/get_started/environment_setup/nf-core-tools).
2323
- A Nextflow-supported software management system, one of:
2424
- [Conda](https://conda-forge.org/download/)
2525
- [Docker](https://docs.docker.com/manuals/)

sites/docs/src/content/docs/developing/tutorials/writing-nf-core-modules/8-using.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It assumes you have already contributed your module to the nf-core/modules repos
1212

1313
### Pipelines using the nf-core template
1414

15-
If you generated your pipeline with [nf-core tools](https://nf-co.re/docs/nf-core-tools/pipelines/create) ([whether the pipeline is official or not](https://nf-co.re/docs/developing/pipelines/external-use)), you can install a module directly.
15+
If you generated your pipeline with [nf-core tools](https://nf-co.re/docs/nf-core-tools/pipelines/create) ([whether the pipeline is official or not](https://nf-co.re/docs/developing/external-use)), you can install a module directly.
1616
Run the following from the root of the repository, or pass `--dir`:
1717

1818
```bash

sites/docs/src/content/docs/running/configuration/configuration-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ nf-core provides these basic profiles for container engines:
5454
- `docker`: Uses [Docker](http://docker.com/) and pulls software from quay.io
5555
- `apptainer`: Uses [Singularity](https://apptainer.org/) and pulls software from quay.io
5656
- `podman`: Uses [Podman](https://podman.io/)
57-
- `shifter`: Uses [Shifter](https://www.nersc.gov/research-and-development/user-defined-images/)
57+
- `shifter`: Uses [Shifter](https://docs.nersc.gov/development/containers/shifter/how-to-use/)
5858
- `charliecloud`: Uses [Charliecloud](https://hpc.github.io/charliecloud/)
5959
- `conda`: Uses [Conda](https://conda.io/docs/) and pulls most software from [Bioconda](https://bioconda.github.io/)
6060

sites/docs/src/content/docs/running/configuration/nextflow-for-your-system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ For example, if you set `docker.registry = 'myregistry.com'`, the image pulls fr
193193

194194
## Update tool versions
195195

196-
The [Nextflow DSL2](https://docs.seqera.io/nextflow/dsl2) implementation of nf-core pipelines uses one container or Conda environment per process, which simplifies software dependency maintenance and updates.
196+
The Nextflow DSL2 implementation of nf-core pipelines uses one container or Conda environment per process, which simplifies software dependency maintenance and updates.
197197

198198
To use a different version of a tool, identify the `process` name and override the Nextflow `container` or `conda` definition for that process using the `withName` declaration.
199199

sites/docs/src/content/docs/running/run-pipelines-offline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Running pipelines offline requires three main components:
2020

2121
To transfer Nextflow to an offline system:
2222

23-
1. [Install Nextflow](https://nextflow.io/docs/latest/getstarted.html#installation) in an online environment.
23+
1. [Install Nextflow](https://docs.seqera.io/nextflow/install) in an online environment.
2424
2. Run your pipeline locally.
2525

2626
:::note

sites/docs/src/content/docs/running/run-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Always use `-resume` when re-running a pipeline after fixing errors or updating
219219

220220
### Notifications
221221

222-
- Specify `--email your@email.com` to receive emails when your pipeline completes (requires Nextflow [mail and notification configuration](https://docs.seqera.io/nextflow/mail#mail-configuration)).
222+
- Specify `--email your@email.com` to receive emails when your pipeline completes (requires Nextflow [mail and notification configuration](https://docs.seqera.io/nextflow/notifications#mail)).
223223
- To receive notifications from your pipeline (e.g., on completion or failure), see the [nf-slack plugin](https://github.com/seqeralabs/nf-slack) for Slack or the [nf-teams plugin](https://github.com/nvnieuwk/nf-teams) for Microsoft Teams.
224224

225225
## Next steps

sites/docs/src/content/docs/specifications/components/modules/general.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ Alternative suggestions:
511511
## Script inclusion
512512

513513
Module templates separate scientific logic from workflow-specific logic, improving code clarity and maintainability.
514-
If a module's `script:` block contains a script rather than command invocations, regardless of the language (for example, Bash, R, Python), and the content is more than a readable length (as a rule of thumb, approximately 20 lines), provide it through a [Nextflow module template](https://docs.seqera.io/nextflow/module#module-templates).
514+
If a module's `script:` block contains a script rather than command invocations, regardless of the language (for example, Bash, R, Python), and the content is more than a readable length (as a rule of thumb, approximately 20 lines), provide it through a [Nextflow module template](https://docs.seqera.io/nextflow/process#template).
515515

516516
:::note
517517
We recommend use of Nextflow templates as they are the most portable method of separating custom script content and execution across all execution contexts.

sites/main-site/src/content/events/2023/hackathon-march-2023/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ We will be a lot of people working in parallel during this hackathon, so to stay
220220
- Link it to the issue so that the issue closes when merged.
221221
6. :page_facing_up: Describe your work on the HackMD document for the project and tell the group! :tada:
222222
7. :memo: While waiting to receive a review - try reviewing someone else's PR!
223-
- [Module review checklist](https://nf-co.re/docs/contributing/modules#new-module-guidelines-and-pr-review-checklist)
224-
- [Subworkflow review checklist](https://nf-co.re/docs/contributing/subworkflows#new-subworkflow-guidelines-and-pr-review-checklist)
223+
- [Module review checklist](https://nf-co.re/docs/contributing/reviewing-pull-requests/review_checklists/component)
224+
- [Subworkflow review checklist](https://nf-co.re/docs/contributing/reviewing-pull-requests/review_checklists/component)
225225
8. :recycle: Repeat!
226226

227227
> The HackMD document is the easiest to forget, but please add something even if you think what you did was small -

0 commit comments

Comments
 (0)