From 4776f39da636a0e9b598f62d745322c44a7e6925 Mon Sep 17 00:00:00 2001 From: Jonathan Perdomo Date: Sat, 22 Oct 2022 15:55:45 -0400 Subject: [PATCH] DOC: Update the Docker version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 546d223..71f55e6 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,14 @@ First, install [Docker](https://docs.docker.com/engine/install/). Pull the latest image from Docker hub: ``` -docker pull genomicslab/longreadsum:v0.0.1 +docker pull genomicslab/longreadsum ``` ## Running On Unix/Linux: ``` -docker run -v local/inputs/:/inputs/ -it genomicslab/longreadsum:v0.0.1 bam -i /inputs/input.bam +docker run -v local/inputs/:/inputs/ -it genomicslab/longreadsum bam -i /inputs/input.bam ``` Note that the `-v` command is required for Docker to find the input file. In the above BAM file example, the local directory `local/inputs/` containing the input file is mapped to a directory `/inputs/` in the Docker container. Thus, the input file is specified as `/inputs/input.bam`