You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Installation.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ SingleM can be installed through
6
6
[Bioconda](https://anaconda.org/bioconda/singlem). Lyrebird is installed by installing SingleM, and then using the `lyrebird` command instead of `singlem` e.g. use `lyrebird pipe ...` instead of `singlem pipe ...`.
@@ -21,55 +21,55 @@ After this, you'll also need to procure the reference data (the "metapackage").
21
21
## Installation via DockerHub
22
22
A docker image generated from the conda package is [available](https://hub.docker.com/r/wwood/singlem) on DockerHub. After installing Docker, run the following:
23
23
```
24
-
docker pull wwood/singlem:0.20.0
24
+
docker pull wwood/singlem:0.20.1
25
25
```
26
26
27
27
Test if it works by running
28
28
```
29
-
docker run wwood/singlem:0.20.0 -h
29
+
docker run wwood/singlem:0.20.1 -h
30
30
```
31
31
32
32
If the sequence data to be analyzed is in the current working directory, SingleM `pipe` can be used like so:
33
33
```
34
-
docker run -v `pwd`:`pwd` wwood/singlem:0.20.0 pipe --sequences \
34
+
docker run -v `pwd`:`pwd` wwood/singlem:0.20.1 pipe --sequences \
1. The default SingleM reference data is included in the docker image, so running [singlem data](/tools/data) is not necessary for this installation method - you can jump straight to using `pipe`.
40
-
2. You should not specify `singlem` in the command line, as this is automatic. Simply use e.g. `docker run wwood/singlem:0.20.0 pipe -h`.
40
+
2. You should not specify `singlem` in the command line, as this is automatic. Simply use e.g. `docker run wwood/singlem:0.20.1 pipe -h`.
41
41
42
42
A similar procedure is true for Lyrebird, except that the docker image is [different](https://hub.docker.com/r/wwood/lyrebird), so you need to run:
43
43
```
44
-
docker pull wwood/lyrebird:0.20.0
45
-
docker run wwood/lyrebird:0.20.0 -h
44
+
docker pull wwood/lyrebird:0.20.1
45
+
docker run wwood/lyrebird:0.20.1 -h
46
46
```
47
47
48
48
## Installation via Singularity / Apptainer
49
49
SingleM can be installed via [Singularity](https://sylabs.io/singularity/) or [Apptainer](https://apptainer.org). After installing Singularity or Apptainer, run the following:
50
50
```
51
-
singularity pull docker://wwood/singlem:0.20.0
51
+
singularity pull docker://wwood/singlem:0.20.1
52
52
```
53
53
54
54
Test if it works by running
55
55
```
56
-
singularity run singlem_0.20.0.sif -h
56
+
singularity run singlem_0.20.1.sif -h
57
57
```
58
58
59
59
If the sequence data to be analyzed is in the current working directory, SingleM `pipe` can be used like so:
60
60
```
61
-
singularity run -B `pwd`:`pwd` singlem_0.20.0.sif pipe --sequences \
61
+
singularity run -B `pwd`:`pwd` singlem_0.20.1.sif pipe --sequences \
1. The default SingleM reference data is included in the docker image, so running [singlem data](/tools/data) is not necessary for this installation method - you can jump straight to using `pipe`.
67
-
2. You should not specify `singlem` in the command line, as this is automatic. Simply use e.g. `singularity run singlem_0.20.0.sif pipe -h`.
67
+
2. You should not specify `singlem` in the command line, as this is automatic. Simply use e.g. `singularity run singlem_0.20.1.sif pipe -h`.
68
68
69
69
A similar procedure is true for Lyrebird, except that the docker image is [different](https://hub.docker.com/r/wwood/lyrebird), so you need to run:
70
70
```
71
-
singularity pull docker://wwood/lyrebird:0.20.0
72
-
singularity run -B `pwd`:`pwd` lyrebird_0.20.0.sif -h
71
+
singularity pull docker://wwood/lyrebird:0.20.1
72
+
singularity run -B `pwd`:`pwd` lyrebird_0.20.1.sif -h
0 commit comments