Skip to content

Commit

Permalink
new release 0.3.1 docs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
umahsn committed Dec 15, 2020
1 parent 6de1b92 commit f6e585e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For instructions regarding Docker installation, please visit [Docker website](ht
### 1) via Docker Hub (preferred)
You can pull NanoCaller docker images from Docker Hub by specifiying a version number.
```
VERSION="0.3.0"
VERSION="0.3.1"
docker run genomicslab/nanocaller:${VERSION} python NanoCaller.py --help
```

Expand All @@ -26,10 +26,10 @@ docker run nanocaller python NanoCaller.py --help
If you want to use NanoCaller Docker image saved in a tar file, download the image file by specifying a version number and use `docker load`.

```
VERSION="0.3.0"
VERSION="0.3.1"
wget https://github.com/WGLab/NanoCaller/releases/download/v${VERSION}/nanocaller_docker.tar.gz
docker load --input nanocaller_docker.tar.gz
docker run nanocaller python NanoCaller.py --help
docker run genomicslab/nanocaller:${VERSION} python NanoCaller.py --help
```


Expand Down
2 changes: 1 addition & 1 deletion docs/ONT Case Study.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ GM24385_2_Guppy_4.2.2_prom.fastq.gz GM24385_3_Guppy_4.2.2_prom.fastq.gz -t $CPU
samtools index HG002.Guppy_4.2.2_prom.bam -@ $CPU
# run nanocaller
VERSION=0.3.0
VERSION=0.3.1
docker run -it -v ${PWD}:'/mnt/' genomicslab/nanocaller:${VERSION} python NanoCaller_WGS.py \
-bam /mnt/HG002.Guppy_4.2.2_prom.bam -ref /mnt/GRCh38.fa -prefix HG002 \
-o /mnt/calls -cpu $CPU --exclude_bed hg38
Expand Down
4 changes: 2 additions & 2 deletions docs/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

For whole genome variant calling, or calling variants on several chromosomes, use `NanoCaller_WGS.py` to call variants. Assuming all your input files are in a folder `YOUR_INPUT_DIR`, and you want to use `YOUR_OUTPUT_DIR` to store the results.
```
VERSION=0.3.0
VERSION=0.3.1
docker run -itd \
-v 'YOUR_INPUT_DIR':'/input/' \
-v 'YOUR_WORKING_DIR':'/output/' \
Expand All @@ -23,7 +23,7 @@ python NanoCaller_WGS.py \

For calling variants on single chromosomes, use `NanoCaller.py` to call variants. Assuming all your input files are in a folder `YOUR_INPUT_DIR`, and you want to use `YOUR_OUTPUT_DIR` to store the results.
```
VERSION=0.3.0
VERSION=0.3.1
docker run -itd \
-v 'YOUR_INPUT_DIR':'/input/' \
-v 'YOUR_WORKING_DIR':'/output/' \
Expand Down

0 comments on commit f6e585e

Please sign in to comment.