Skip to content

Commit 57e07ea

Browse files
Fix docker mount paths
1 parent 08b7aa7 commit 57e07ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

03-running_pvactools.Rmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ In your Terminal execute the following command:
2121
mkdir pVACtools_outputs
2222
2323
docker run \
24-
-v HCC1395_inputs:/HCC1395_inputs \
25-
-v pVACtools_outputs:/pVACtools_outputs \
24+
-v ${PWD}/HCC1395_inputs:/HCC1395_inputs \
25+
-v ${PWD}/pVACtools_outputs:/pVACtools_outputs \
2626
-it griffithlab/pvactools:4.0.0 \
2727
/bin/bash
2828
```
2929

3030
This will pull the 4.0.0 version of the griffithlab/pvactools Docker image and
31-
start an interactive session of that Docker image. The `-v
32-
HCC1395_inputs:/HCC1395_inputs` part of the command will mount the
31+
start an interactive session of that Docker image. The `-v ${PWD}/HCC1395_inputs:/HCC1395_inputs`
32+
part of the command will mount the
3333
`HCC1395_inputs` folder at `/HCC1395_inputs` inside of the Docker container
3434
so that you will have access to the input data from inside the Docker
35-
container. The `-v pVACtools_outputs:/pVACtools_outputs` part of the command
35+
container. The `-v ${PWD}/pVACtools_outputs:/pVACtools_outputs` part of the command
3636
will mount the `pVACtools_outputs` folder you just created. We will write the
3737
outputs from pVACseq and pVACfuse to that folder so that you will have access
3838
to it once you exit the Docker image.

0 commit comments

Comments
 (0)