mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
Fixed code blocks for markdown linting
This commit is contained in:
parent
2d90c919aa
commit
a0d42f5153
1 changed files with 5 additions and 1 deletions
|
@ -27,6 +27,7 @@ module avail igmm/apps/nextflow
|
|||
```
|
||||
|
||||
To load the most recent version:
|
||||
|
||||
```bash
|
||||
module load igmm/apps/nextflow
|
||||
```
|
||||
|
@ -64,7 +65,7 @@ qlogin -l h_vmem=8G
|
|||
|
||||
If your eddie terminal disconnects your Nextflow job will stop. You can run Nextflow as a bash script on the command line using `nohup` to prevent this.
|
||||
|
||||
```
|
||||
```bash
|
||||
nohup ./nextflow_run.sh &
|
||||
```
|
||||
|
||||
|
@ -73,16 +74,19 @@ nohup ./nextflow_run.sh &
|
|||
Wild west nodes on eddie can be accessed via ssh (node2c15, node2c16, node3g22). To run Nextflow on one of these nodes, do it within a [screen session](https://linuxize.com/post/how-to-use-linux-screen/).
|
||||
|
||||
Start a new screen session.
|
||||
|
||||
```bash
|
||||
screen -S <session_name>
|
||||
```
|
||||
|
||||
List existing screen sessions
|
||||
|
||||
```bash
|
||||
screen -ls
|
||||
```
|
||||
|
||||
Reconnect to an existing screen session
|
||||
|
||||
```bash
|
||||
screen -r <session_name>
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue