Skip to content

Commit 0d733da

Browse files
committed
adjusted directory paths
1 parent 9297291 commit 0d733da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

posts/NAAM-07-nanopore_hpc.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Now prepare your project directory with **amplicon_project.py** as follows:
5757

5858
``` bash
5959
singularity exec \
60-
--bind /mnt/viro0002:/mnt/viro0002 \
60+
--bind /mnt/viro0002-data:/mnt/viro0002-data \
6161
--bind $HOME:$HOME \
6262
--bind $PWD:$PWD \
6363
naam_workflow.sif \
@@ -95,7 +95,7 @@ Please use absolute paths for the **reads**, **primers** and **references** so t
9595

9696
The `--bind` arguments are needed to explicitly tell Singularity to mount the necessary host directories into the container. The part before the colon is the path on the host machine that you want to make available. The path after the colon is the path inside the container where the host directory should be mounted.
9797

98-
As a default, Singularity often automatically binds your home directory (`$HOME`) and the current directory (`$PWD`). We also explicitly bind `/mnt/viro0002` in this example. If your input files (reads, reference, databases) or output project directory reside outside these locations, you MUST add specific `--bind /host/path:/container/path` options for those locations, otherwise the container won't be able to find them.
98+
As a default, Singularity often automatically binds your home directory (`$HOME`) and the current directory (`$PWD`). We also explicitly bind `/mnt/viro0002-data` in this example. If your input files (reads, reference, databases) or output project directory reside outside these locations, you MUST add specific `--bind /host/path:/container/path` options for those locations, otherwise the container won't be able to find them.
9999

100100
Once the setup is completed, move to your newly created project directory with `cd`, check where you are with `pwd`.
101101

@@ -124,7 +124,7 @@ Run inside of your project directory:
124124

125125
```bash
126126
singularity exec \
127-
--bind /mnt/viro0002:/mnt/viro0002 \
127+
--bind /mnt/viro0002-data:/mnt/viro0002-data \
128128
--bind $HOME:$HOME \
129129
--bind $PWD:$PWD \
130130
naam_workflow.sif \

0 commit comments

Comments
 (0)