A wrapper to the FastANI program.
Project description
FastANI
This package has been developed to provide a Python interface to the FastANI tool.
Installation
Note: You must install the FastANI binaries yourself for this package to work.
This package only has standard dependencies and works for Python versions >=3.6.
pip install fastani
Basic Usage
Note: All features except for the matrix and visualization method have been implemented.
To use this package, simply call the fastani
method, all parameters except for the
query
and reference
arguments are optional, and in this case the FastANI default values are used.
The query
and reference
arguments can either be a string, or collection of strings that point to the fasta file(s).
from fastani import fastani
result = fastani(query='query.fna', reference='reference.fna')
dict_results = result.as_dict()
# Accessing results
print(dict_results['query.fna']['reference.fna'].ani) # 89.1234
print(dict_results['query.fna']['reference.fna'].n_frag) # 50
print(dict_results['query.fna']['reference.fna'].total_frag) # 100
print(dict_results['query.fna']['reference.fna'].align_frac) # 0.5
# Writing results to disk
result.to_file('results.txt')
The FastANI default parameters can be overridden by passing the following arguments:
exe
: The path to the FastANI binary.k
: The kmer size to use.cpus
: The number of CPUs to use.frag_len
: Fragment length to use.min_frac
: Minimum fraction of genome shared.min_frag
: Minimum number of aligned fragments(version < 1.3)
.
Advanced Usage
There are two additional arguments that can be supplied to the fastani
method:
single_execution
: If set toTrue
(default), FastANI will use the query and reference list parameters. If set toFalse
, then each genome will be analysed individually.bidirectional
: If set toFalse
(default), FastANI will only perform aquery -> reference
comparison. If set toTrue
, then areference -> query
comparison will also be performed.
Project details
Release history Release notifications | RSS feed
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 fastani-1.1.0.tar.gz
.
File metadata
- Download URL: fastani-1.1.0.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aabdd2ea6204232ba756570cd2477093c36c69ce90dbf652da6b858b8aad14b8 |
|
MD5 | d9123fe3bc467dd959e6aea947220c67 |
|
BLAKE2b-256 | f8d7dc853ef017388e6bca850da288c6356f110d60337f0b0dde20ba7400e63d |
File details
Details for the file fastani-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: fastani-1.1.0-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 803fb26b5cfe45ee37b4586c54a5fd0b0c2f765ce93257bccd495c25d827db00 |
|
MD5 | 3333f0aaceace6f6f7ab7256630c34c6 |
|
BLAKE2b-256 | 4eee687e5932cfc4d6508fc8e4ea7225e5b12f027583326b152c7e9fcadd8920 |