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

Fixed code blocks for markdown linting

This commit is contained in:
ameynert 2021-03-24 13:55:31 +00:00 committed by GitHub
parent 2d90c919aa
commit a0d42f5153
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,7 @@ module avail igmm/apps/nextflow
``` ```
To load the most recent version: To load the most recent version:
```bash ```bash
module load igmm/apps/nextflow 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. 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 & 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/). 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. Start a new screen session.
```bash ```bash
screen -S <session_name> screen -S <session_name>
``` ```
List existing screen sessions List existing screen sessions
```bash ```bash
screen -ls screen -ls
``` ```
Reconnect to an existing screen session Reconnect to an existing screen session
```bash ```bash
screen -r <session_name> screen -r <session_name>
``` ```