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

Update sanger.md

This commit is contained in:
Anthony Underwood 2021-04-21 20:24:08 +01:00 committed by GitHub
parent 40eb3e0201
commit cc18d213dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ Nextflow manages each process as a separate job that is submitted to the cluster
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`
```
```bash
#!/bin/bash
#BSUB -o /path/to/a/log/dir/%J.o
#BSUB -e /path/to/a/log/dir//%J.e
@ -44,4 +44,3 @@ if [[ $status -eq 0 ]]; then
rm -r /path/to/some/dir/work
fi
```