File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,18 @@ In your Terminal execute the following command:
21
21
mkdir pVACtools_outputs
22
22
23
23
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 \
26
26
-it griffithlab/pvactools:4.0.0 \
27
27
/bin/bash
28
28
```
29
29
30
30
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
33
33
` HCC1395_inputs ` folder at ` /HCC1395_inputs ` inside of the Docker container
34
34
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
36
36
will mount the ` pVACtools_outputs ` folder you just created. We will write the
37
37
outputs from pVACseq and pVACfuse to that folder so that you will have access
38
38
to it once you exit the Docker image.
You can’t perform that action at this time.
0 commit comments