Skip to content

Commit 2898cba

Browse files
committed
bump version 0.3.3+dev -> 0.3.4
1 parent 4b18d6f commit 2898cba

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

FastOMA/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

22
__packagename__ = "FastOMA"
3-
__version__ = "0.3.3+dev"
3+
__version__ = "0.3.4"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ installed.
5555
```bash
5656
nextflow run dessimozlab/FastOMA -profile docker --input_folder /path/to/in_folder --output_folder /path/to/out_folder
5757
```
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.
5959
Nextflow will automatically fetch the [dessimozlab/FastOMA](https://github.com/dessimozlab/FastOMA) repository and starts
6060
the `FastOMA.nf` workflow. The `-profile` argument must be used to specify the profile to use. We support `docker`,
6161
`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:
8888
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:
8989

9090
```bash
91-
nextflow run desimozlab/FastOMA -r v0.3.1 -profile conda
91+
nextflow run desimozlab/FastOMA -r v0.3.4 -profile conda
9292
```
9393

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).
9595

9696
### 2. Cloning the FastOMA repo and running from there
9797

@@ -184,7 +184,7 @@ nextflow run FastOMA.nf -profile docker \
184184
--output_folder myresult/
185185
```
186186
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).
188188

189189
### Singularity
190190
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`.

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ manifest {
88
nextflowVersion = ">=22.10.4"
99
defaultBranch = "main"
1010
doi = "10.1101/2024.01.29.577392"
11-
version = "0.4dev"
11+
version = "0.3.4"
1212
}
1313

1414
params {
1515
container_name = "dessimozlab/fastoma"
16-
container_version = "dev"
16+
container_version = "0.3.4"
1717
omamer_db = "https://omabrowser.org/All/LUCA.h5"
1818
debug_enabled = false
1919
help = false

0 commit comments

Comments
 (0)