This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
forked from nextflow-io/nf-schema
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,6 @@ Supported sample sheet formats are CSV, TSV and YAML (simple). | |
|
||
Declare the plugin in your Nextflow pipeline configuration file: | ||
|
||
_(make sure you pin the latest stable release version after the `@`)_ | ||
|
||
```groovy title="nextflow.config" | ||
plugins { | ||
id 'nf-validation' | ||
|
@@ -30,6 +28,11 @@ plugins { | |
|
||
This is all that is needed - Nextflow will automatically fetch the plugin code at run time. | ||
|
||
> [!NOTE] | ||
> The snippet below will always try to install the latest version, good to make sure | ||
> that the latest bug fixes are included! However, this can cause difficulties if running | ||
> offline. You can pin a specific release using the syntax `[email protected]` | ||
You can now include the plugin helper functions into your Nextflow pipeline: | ||
|
||
```groovy title="main.nf" | ||
|