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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ installed.
55
55
```bash
56
56
nextflow run dessimozlab/FastOMA -profile docker --input_folder /path/to/in_folder --output_folder /path/to/out_folder
57
57
```
58
-
You could also add specific version to be used by adding `-r v0.3.1` to the command line.
58
+
You could also add specific version to be used by adding `-r v0.3.4` to the command line.
59
59
Nextflow will automatically fetch the [dessimozlab/FastOMA](https://github.com/dessimozlab/FastOMA) repository and starts
60
60
the `FastOMA.nf` workflow. The `-profile` argument must be used to specify the profile to use. We support `docker`,
61
61
`singularity` and `conda` which then automatically set up the necessary tools by downloading the required containers or creating
@@ -88,10 +88,10 @@ There are four ways to run/install FastOMA detailed below:
88
88
The FastOMA workflow can be run directly without any installation using nextflow's ability to fetch a workflow from github. A specific version can be selected by specifying the `-r` option to nextflow to select a specific version of FastOMA:
89
89
90
90
```bash
91
-
nextflow run desimozlab/FastOMA -r v0.3.1 -profile conda
91
+
nextflow run desimozlab/FastOMA -r v0.3.4 -profile conda
92
92
```
93
93
94
-
This will fetch version v0.3.1 from github and run the FastOMA workflow using the conda profile. See section [How to run fastOMA](#how-to-run-fastoma).
94
+
This will fetch version v0.3.4 from github and run the FastOMA workflow using the conda profile. See section [How to run fastOMA](#how-to-run-fastoma).
95
95
96
96
### 2. Cloning the FastOMA repo and running from there
97
97
@@ -184,7 +184,7 @@ nextflow run FastOMA.nf -profile docker \
184
184
--output_folder myresult/
185
185
```
186
186
This will use the container that is tagged with the current commit id. Similarly, one could also use
187
-
`--container_version "0.3.1"` to use the container with version `dessimozlab/fastoma:0.3.1` from dockerhub. Check the latest version on the [DockerHub](https://hub.docker.com/r/dessimozlab/fastoma/tags).
187
+
`--container_version "0.3.4"` to use the container with version `dessimozlab/fastoma:0.3.4` from dockerhub. Check the latest version on the [DockerHub](https://hub.docker.com/r/dessimozlab/fastoma/tags).
188
188
189
189
### Singularity
190
190
Since Docker needs administrator privileges (root access), [Singluarity](https://apptainer.org/index.html) (a.k.a Apptainer) is a good alternative. This can be installed using [Conda](https://anaconda.org/conda-forge/singularity) with `conda install conda-forge::singularity`. However, in most of the academic HPC cluster, singluarity is already installed and can be called with `module load`.
0 commit comments