-
Notifications
You must be signed in to change notification settings - Fork 21
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
2 changed files
with
44 additions
and
9 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 |
---|---|---|
|
@@ -13,9 +13,33 @@ To compile and run the tests use the following command: | |
./gradlew check | ||
``` | ||
|
||
## Launch it with Nextflow | ||
## Launch it with installed Nextflow | ||
|
||
To test with Nextflow for development purpose: | ||
!!! warning | ||
|
||
This method will add the development version of the plugin to your Nextflow plugins | ||
Take care when using this method and make sure that you are never using a | ||
development version to run real pipelines. | ||
You can delete all `nf-schema` versions using this command: | ||
```bash | ||
rm -rf ~/.nextflow/plugins/nf-schema* | ||
``` | ||
|
||
Install the current version of the plugin in your `.nextflow/plugins` folder | ||
|
||
```bash | ||
make install | ||
``` | ||
|
||
Update or add the nf-schema plugin with the installed version in your test pipeline | ||
|
||
```groovy title="nextflow.config" | ||
plugins { | ||
id '[email protected]' | ||
} | ||
``` | ||
|
||
## Launch it with a local version of Nextflow | ||
|
||
Clone the Nextflow repo into a sibling directory | ||
|
||
|
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