Skip to content

Commit 2d5713f

Browse files
committed
Merge branch 'fix-omamer-2.1.1-issue'
fixes #74
2 parents fcfaf12 + ccc22ef commit 2d5713f

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

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"
3+
__version__ = "0.4.1"
44

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

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ installed.
6060
```bash
6161
nextflow run dessimozlab/FastOMA -profile docker --input_folder /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.4.1` 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.4.1 -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.4.1 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.4.1"` to use the container with version `dessimozlab/fastoma:0.4.1` 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`.
@@ -459,6 +459,8 @@ Citation: Majidian, Sina, Yannis Nevers, Ali Yazdizadeh Kharrazi, Alex Warwick
459459

460460

461461
## Change log
462+
- Update v0.4.1:
463+
- bump omamer to 2.1.2 (fixes a bug in the version 2.1.1, see [#74](https://github.com/DessimozLab/omamer/issues/74)
462464
- Update v0.4.0:
463465
- Improvements for nextflow: alternative version selection, README updates
464466
- Split HOG and sampling improvements

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.4.0"
11+
version = "0.4.1"
1212
}
1313

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
"DendroPy >=4.5,<=4.6.1",
1919
"ete3 ~=3.1",
2020
"lxml >=4.6,<6",
21-
"omamer ~=2.0",
21+
"omamer ~=2.0, !=2.1.1",
2222
"pyham ~=1.1",
2323
"numpy",
2424
"pyparsing",

0 commit comments

Comments
 (0)