mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-14 05:33:09 +00:00
Update sanger.md
This commit is contained in:
parent
40eb3e0201
commit
cc18d213dc
1 changed files with 1 additions and 2 deletions
|
@ -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.
|
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`
|
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
|
#!/bin/bash
|
||||||
#BSUB -o /path/to/a/log/dir/%J.o
|
#BSUB -o /path/to/a/log/dir/%J.o
|
||||||
#BSUB -e /path/to/a/log/dir//%J.e
|
#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
|
rm -r /path/to/some/dir/work
|
||||||
fi
|
fi
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue