Skip to content

Commit 8e4d373

Browse files
committed
post release version updates for dev branch
2 parents 3def10b + 915baae commit 8e4d373

3 files changed

Lines changed: 13 additions & 6 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.5.0+dev"
3+
__version__ = "0.5.1"
44

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

README.md

Lines changed: 11 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 /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.5.0` to the command line. Without any `-r` argument,
63+
You could also add specific version to be used by adding `-r v0.5.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.5.0 -profile conda
102+
nextflow run dessimozlab/FastOMA -r v0.5.1 -profile conda
103103
```
104104

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).
105+
This will fetch version v0.5.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.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).
198+
`--container_version "0.5.1"` to use the container with version `dessimozlab/fastoma:0.5.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`.
@@ -467,12 +467,19 @@ Citation: Majidian, Sina, Yannis Nevers, Ali Yazdizadeh Kharrazi, Alex Warwick
467467

468468

469469
## Change log
470+
- Update v0.5.1+dev (not yet released):
471+
472+
- Update v0.5.1:
473+
- Bug with input handling fixed.
474+
- upgraded github actions for CI/CD.
470475
- Update v0.5.0:
471476
- renamed input_folder parameter to input. input accepts now also (remote) archive tarball files.
472477
- better configuration setup (close to nf-core)
473478
- improved resource allocation for nextflow
474479
- improved handling of alternative splicing variants in reporting
475480
- adding test profile and nf-test based CI checks
481+
- Update v0.4.1:
482+
- bump omamer to 2.1.2 (fixes a bug in the version 2.1.1, see [#74](https://github.com/DessimozLab/omamer/issues/74)
476483
- Update v0.4.0:
477484
- Improvements for nextflow: alternative version selection, README updates
478485
- Split HOG and sampling improvements

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": "0.5.0"
233+
"default": "dev"
234234
}
235235
}
236236
}

0 commit comments

Comments
 (0)