-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of github.com:nf-core/raredisease into dnascope
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
|
@@ -395,3 +395,24 @@ We recommend adding the following line to your environment to limit this (typica | |
```bash | ||
NXF_OPTS='-Xms1g -Xmx4g' | ||
``` | ||
|
||
### Running the pipeline without Internet access | ||
|
||
The pipeline and container images can be downloaded using [nf-core tools](https://nf-co.re/docs/usage/offline). For running offline, you of course have to make all the reference data available locally, and specify `--fasta`, etc., see [above](#reference-files-and-parameters). | ||
|
||
Contrary to the paragraph about [Nextflow](https://nf-co.re/docs/usage/offline#nextflow) on the page linked above, it is not possible to use the "-all" packaged version of Nextflow for this pipeline. The online version of Nextflow is necessary to support the necessary nextflow plugins. Download instead the file called just `nextflow`. Nextflow will download its dependencies when it is run. Additionally, you need to download the nf-validation plugin explicitly: | ||
|
||
``` | ||
./nextflow plugin install nf-validation | ||
``` | ||
|
||
Now you can transfer the `nextflow` binary as well as its directory `$HOME/.nextflow` to the system without Internet access, and use it there. It is necessary to use an explicit version of `nf-validation` offline, or Nextflow will check for the most recent version online. Find the version of nf-validation you downloaded in `$HOME/.nextflow/plugins`, then specify this version for `nf-validation` in your configuration file: | ||
|
||
``` | ||
plugins { | ||
// Set the plugin version explicitly, otherwise nextflow will look for the newest version online. | ||
id '[email protected]' | ||
} | ||
``` | ||
|
||
This should go in your Nextflow confgiguration file, specified with `-c <YOURCONFIG>` when running the pipeline. |