1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 00:26:03 +00:00

Add ~/bin as recommended location for nextflow executable

This commit is contained in:
Anthony Underwood 2021-04-22 12:02:11 +01:00 committed by GitHub
parent 351c5773f0
commit b16b011bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,8 @@ The latest version of Nextflow is not installed by default on the cluster. You w
- Install Nextflow : [here](https://www.nextflow.io/docs/latest/getstarted.html#)
Recommendation place to move the `nextflow` executable is `~/bin` so that it's in the `PATH`.
Nextflow manages each process as a separate job that is submitted to the cluster by using the `bsub` command.
Nextflow shouldn't run directly on the submission node but on a compute node.
To do so make a shell script with a similar structure to the following code and submit with `bsub < $PWD/my_script.sh`
@ -27,10 +29,10 @@ export HTTP_PROXY='http://wwwcache.sanger.ac.uk:3128'
export HTTPS_PROXY='http://wwwcache.sanger.ac.uk:3128'
export NXF_ANSI_LOG=false
export NXF_OPTS="-Xms8G -Xmx8G -Dnxf.pool.maxThreads=2000"
export NXF_VER=21.03.0-edge
export NXF_VER=21.04.0-edge
/path/to/your/install/nextflow run \
nextflow run \
/path/to/nf-core/pipeline/main.nf \
-w /path/to/some/dir/work \
-profile sanger \