Skip to content

Commit 51d2cd4

Browse files
committed
Merge branch 'rel-0.5.0' into dev
2 parents 293476b + b22373f commit 51d2cd4

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

FastOMA/__init__.py

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

22
__packagename__ = "FastOMA"
3-
__version__ = "0.4.0+dev"
3+
__version__ = "0.5.0"
44

55
import logging
66
logger = logging.getLogger("FastOMA")

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ installed.
6060
```bash
6161
nextflow run dessimozlab/FastOMA -profile docker --input /path/to/in_folder --output_folder /path/to/out_folder
6262
```
63-
You could also add specific version to be used by adding `-r v0.4.0` to the command line. Without any `-r` argument,
63+
You could also add specific version to be used by adding `-r v0.5.0` to the command line. Without any `-r` argument,
6464
always the latest available release will be used. With `-r dev` the latest development release can be used.
6565

6666
> [!WARNING]
@@ -99,10 +99,10 @@ There are four ways to run/install FastOMA detailed below:
9999
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:
100100

101101
```bash
102-
nextflow run dessimozlab/FastOMA -r v0.4.0 -profile conda
102+
nextflow run dessimozlab/FastOMA -r v0.5.0 -profile conda
103103
```
104104

105-
This will fetch version v0.4.0 from github and run the FastOMA workflow using the conda profile. See section [How to run fastOMA](#how-to-run-fastoma).
105+
This will fetch version v0.5.0 from github and run the FastOMA workflow using the conda profile. See section [How to run fastOMA](#how-to-run-fastoma).
106106

107107
### 2. Cloning the FastOMA repo and running from there
108108

@@ -195,7 +195,7 @@ nextflow run FastOMA.nf -profile docker \
195195
--output_folder myresult/
196196
```
197197
This will use the container that is tagged with the current commit id. Similarly, one could also use
198-
`--container_version "0.4.0"` to use the container with version `dessimozlab/fastoma:0.4.0` from dockerhub. Check the latest version on the [DockerHub](https://hub.docker.com/r/dessimozlab/fastoma/tags).
198+
`--container_version "0.5.0"` to use the container with version `dessimozlab/fastoma:0.5.0` from dockerhub. Check the latest version on the [DockerHub](https://hub.docker.com/r/dessimozlab/fastoma/tags).
199199

200200
### Singularity
201201
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`.
@@ -467,7 +467,7 @@ Citation: Majidian, Sina, Yannis Nevers, Ali Yazdizadeh Kharrazi, Alex Warwick
467467

468468

469469
## Change log
470-
- Update v0.5dev (not released yet):
470+
- Update v0.5.0:
471471
- renamed input_folder parameter to input. input accepts now also (remote) archive tarball files.
472472
- better configuration setup (close to nf-core)
473473
- improved resource allocation for nextflow

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manifest {
88
nextflowVersion = ">=22.10.4"
99
defaultBranch = "main"
1010
doi = "10.1101/2024.01.29.577392"
11-
version = "0.5dev"
11+
version = "0.5.0"
1212
contributors = [
1313
[
1414
name: 'Sina Majidian',
@@ -51,7 +51,7 @@ params {
5151

5252
// container settings
5353
container_name = "dessimozlab/fastoma"
54-
container_version = "dev"
54+
container_version = "0.5.0"
5555

5656
// OMAmer database for mapping to precomputed HOGs
5757
omamer_db = "https://omabrowser.org/All/LUCA.h5"

nextflow_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
},
231231
"container_version": {
232232
"type": "string",
233-
"default": "dev"
233+
"default": "0.5.0"
234234
}
235235
}
236236
}

0 commit comments

Comments
 (0)