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
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
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.5` to the command line. Without any `-r` argument,
58
+
You could also add specific version to be used by adding `-r v0.4.0` to the command line. Without any `-r` argument,
59
59
always the latest available release will be used. With `-r dev` the latest development release can be used.
60
60
61
61
> [!WARNING]
@@ -94,10 +94,10 @@ There are four ways to run/install FastOMA detailed below:
94
94
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:
95
95
96
96
```bash
97
-
nextflow run dessimozlab/FastOMA -r v0.3.5 -profile conda
97
+
nextflow run dessimozlab/FastOMA -r v0.4.0 -profile conda
98
98
```
99
99
100
-
This will fetch version v0.3.5 from github and run the FastOMA workflow using the conda profile. See section [How to run fastOMA](#how-to-run-fastoma).
100
+
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).
101
101
102
102
### 2. Cloning the FastOMA repo and running from there
103
103
@@ -190,7 +190,7 @@ nextflow run FastOMA.nf -profile docker \
190
190
--output_folder myresult/
191
191
```
192
192
This will use the container that is tagged with the current commit id. Similarly, one could also use
193
-
`--container_version "0.3.5"` to use the container with version `dessimozlab/fastoma:0.3.5` from dockerhub. Check the latest version on the [DockerHub](https://hub.docker.com/r/dessimozlab/fastoma/tags).
193
+
`--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).
194
194
195
195
### Singularity
196
196
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`.
@@ -455,6 +455,15 @@ Majidian, Sina, Yannis Nevers, Ali Yazdizadeh Kharrazi, Alex Warwick Vesztrocy,
455
455
456
456
457
457
## Change log
458
+
- Update v0.4.0:
459
+
- Improvements for nextflow: alternative version selection, README updates
460
+
- Split HOG and sampling improvements
461
+
- ensure orthologGroup at the MRCA of all genes in the group
462
+
- Docker improvements, additional labels and tools
463
+
- New gene families with mmseqs easy-cluster if mmseqs is installed
464
+
- Improved input checking
465
+
- Merge rootHOGs, improved handling of singleton using omamer multi-hits
466
+
- Various documentation and usability updates
458
467
- Update v0.3.5:
459
468
- Fixes an issue with reaching the maximum recursion limit. (#31)
460
469
- Fixes a problem with parallel execution for big families. (#44)
0 commit comments