Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlsteenwyk/orthofisher
a broadly applicable tool for automated gene identification and retrieval
https://github.com/jlsteenwyk/orthofisher
bioinformatics evolution evolutionary-biology genomics orthology orthology-assignments orthology-inference phylogenetics phylogenomics python
Last synced: 5 days ago
JSON representation
a broadly applicable tool for automated gene identification and retrieval
- Host: GitHub
- URL: https://github.com/jlsteenwyk/orthofisher
- Owner: JLSteenwyk
- License: mit
- Created: 2021-01-14T21:16:30.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T02:17:25.000Z (5 months ago)
- Last Synced: 2024-10-18T14:13:14.061Z (about 1 month ago)
- Topics: bioinformatics, evolution, evolutionary-biology, genomics, orthology, orthology-assignments, orthology-inference, phylogenetics, phylogenomics, python
- Language: Python
- Homepage: https://jlsteenwyk.com/orthofisher/
- Size: 81.9 MB
- Stars: 28
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: change_log.txt
- License: LICENSE.md
Awesome Lists containing this project
README
Docs
·
Report Bug
·
Request Feature
Orthofisher conducts automated and high-throughout identification of a predetermined set of orthologs, which can be used for phylgenomics, gene family copy number determination and more!
If you found orthofisher useful, please cite *orthofisher: a broadly applicable tool for automated gene identification and retrieval*. Steenwyk & Rokas 2021, G3 Genes|Genomes|Genetics. doi: [10.1093/g3journal/jkab250](https://academic.oup.com/g3journal/advance-article/doi/10.1093/g3journal/jkab250/6321954?login=true).
---
## Guide
[Quick Start](#quick-start)
[Performance Assessment](#performance-assessment)
[FAQ](#faq)
---
## Quick Start
For detailed instructions on usage and a tutorial, please see the [online documentation](https://jlsteenwyk.com/orthofisher/).
### 1) Prerequisite
Before installing orthofisher, please first install [HMMER3](http://hmmer.org/documentation.html) and add the HMMER to your .bashrc path. For example, my .bashrc has the following:```shell
export PATH=$PATH:/home/steenwj/SOFTWARE/hmmer-3.1b2-linux-intel-x86_64/binaries
```
### 2) Install orthofisher
**If you are having trouble installing orthofisher, please contact the lead developer, Jacob L. Steenwyk, via [email](https://jlsteenwyk.com/contact.html) or [twitter](https://twitter.com/jlsteenwyk) to get help.**
To install via *anaconda*, execute the follwoing command:
``` shell
conda install -c jlsteenwyk orthofisher
```
Visit here for more information: https://anaconda.org/jlsteenwyk/orthofisher
To install via *pip*, execute the follwoing command:
```shell
pip install orthofisher
```
To install from source, execute the follwoing command:
```shell
# download
git clone https://github.com/JLSteenwyk/orthofisher.git
# change dir
cd orthofisher/
# install
make install
```
If you run into software dependency issues, install orthofisher in a virtual environment. To do so, create your virtual environment with the following command:
```shell
# create virtual environment
python -m venv .venv
# activate virtual environment
source .venv/bin/activate
```Next, install the software using your preferred method above. Thereafter, you will be able to use orthofisher.
To deactivate your virtual environment, use the following command:
```shell
# deactivate virtual environment
deactivate
```
**Note, the virtual environment must be activated to use *orthofisher*.**
---
## Performance Assessment
Using 1,530 sequence similarity searches across six model eukaryotic proteomes, the performance of orthofisher was compared to results obtained from BUSCO. Examination of precision and recall revealed near perfect performance. More specifically, orthofisher had a recall of 1.0 and precision of 0.99. Precision is less than 1.0 because priors of expected sequence length and sequence similarity scores--which are not implemented in orthofisher--resulted in more missing genes in the BUSCO pipeline than the orthofisher pipeline.
---
## FAQ
I am having trouble installing orthofisher, what should I do?
Please install orthofisher using a virtual environment as described in the installation instructions. If you are still running into issues after installing in a virtual environment, please contact Jacob L. Steenwyk via [email](https://jlsteenwyk.com/contact.html) or [twitter](https://twitter.com/jlsteenwyk).
---
### orthofisher is developed and maintained by [Jacob Steenwyk](https://jlsteenwyk.github.io/)