A Python interface for PHAST (phylogenetic analysis with space/time models).
Project description
phasty
A Python interface for PHAST (phylogenetic analysis with space/time models).
Description
PHAST is a package consisting of command-line programs for comparative genomics. It supports several nucleotide substitution models. This package phasty provides Python wrappers for some major programs so that it is easier to integrate them into complicated workflows. It can also parse some files from plain text to more computer-friendly forms to help downstream analysis.
Usage
The design idea of phasty is to be robust and compatible with version changes of PHAST. Therefore, the signatures of functions are written in a general way. Please refer to the corresponding websites for detailed usage of specific options.
Example
Assume hmrc.fa
exists in the current directory. After running phylo_fit
and reading the .mod file, the content is stored in a list of objects holding attributes with proper data types. Each object represents a fitted model.
from phasty import phylo_fit, parse_mod
output = phylo_fit(
"hmrc.fa",
tree="((human,(mouse,rat)),cow)",
subst_mod="U2S",
EM=True,
precision="MED",
non_overlapping=True,
out_root="hmrc-u2s",
)
mod_lst = parse_mod("hmrc-u2s.mod")
print(mod_lst[0].rate_mat)
Installation
Download and install PHAST first.
Install from PyPI:
pip install phasty
Or install from source after git clone:
cd phasty
pip install -e .
Run tests:
pip install -e .[dev]
python -m pytest --cov=phasty tests/
Uninstall:
pip uninstall phasty
Notes
This package uses Semantic Versioning.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file phasty-0.5.3.tar.gz
.
File metadata
- Download URL: phasty-0.5.3.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d92f5856f60848d664e92dae8f967adcfb20a727a7ff415d4d6f36b8a4d4f76d |
|
MD5 | 3f01d8b6e0b8ce1c7f354fa90f1074d5 |
|
BLAKE2b-256 | 3fdaeede2972d57b8bfc39fafd7e6ceed714c416b5ef94e385fc1ad20de7e9cb |
File details
Details for the file phasty-0.5.3-py3-none-any.whl
.
File metadata
- Download URL: phasty-0.5.3-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebab77ddf314aadbf7b39fda55a9379a82737fae8bbbd8bc756bc898d352d2c0 |
|
MD5 | 2d4a686ccb3892b84e004e1c8eb9eaa2 |
|
BLAKE2b-256 | 869994253ec79ab61aa978cf66b6e7100493450da40a7a19de68f0edf87eb8be |