Counts file library and conversion scripts.
Project description
Counts file library
This python library cflib
provides scripts to convert between fasta, VCF and
counts files. Counts files are used by
PoMo, an
implementation of a polymorphism-aware phylogenetic model. We advice you to use
PoMo implemented in IQ-TREE.
For a reference, please see and cite:
Schrempf, D., Minh, B. Q., De Maio, N., von Haeseler, A., &
Kosiol, C. (2016). Reversible Polmorphism-Aware Phylotenetic
Models and their Application to Tree Inference. Journal of
Theoretical Biology, in press.
Requirements
cflib
requires python
(Version 3.x) to be
installed. cflib
also uses the following python libraries that will be
automatically pulled when installing cflib
:
Installation
Install cflib
and the conversion scripts with
pip install --user cflib-pomo
Note that the name of cflib
on the PyPI repository (which is used by pip
) is
cflib-pomo
, since the name cflib
was taken!
If the standard Python version of your operation system is still 2.x (e.g.,
OSX), make sure that you use, pip3
.
The --user
flag is optional and tells Python to install cflib
and
the scripts only for this user but not system wide.
If you want to uninstall cflib
,
pip uninstall cflib-pomo
The [conversion scripts](#Conversion scripts) should be directly available if
your PATH
environment variable is setup correctly. For my Linux installation,
the Python path ~/.local/bin
had to be included. This may vary for your
operating system.
Example
Sample data can be found in examples. Assuming that have installed
cflib
we will now convert example.fasta
to a
counts file named example_from_fasta.cf
. The script
that we will use is called FastaToCounts.py
.
First, we have a look at the help message:
FastaToCounts.py --help
usage: FastaToCounts.py [-h] [-v] [--iupac] fastaFile output
Convert fasta to counts format.
The (aligned) sequences in the fasta file are read in and the data is
written to a counts format file.
Sequence names are stripped at the first dash. If the stripped
sequence name coincide, individuals are put into the same population.
E.g., homo_sapiens-XXX and homo_sapiens-YYY will be in the same
population homo_sapiens.
Take care with large files, this uses a lot of memory.
The input as well as the output files can additionally be gzipped
(indicated by a .gz file ending).
If heterozygotes are encoded with IUPAC codes (e.g., 'r' for A or G),
homozygotes need to be counted twice so that the level of polymorphism
stays correct. This can be done with the `--iupac` flag.
positional arguments:
fastaFile path to (gzipped) fasta file
output name of (gzipped) outputfile in counts format
optional arguments:
-h, --help show this help message and exit
-v, --verbose turn on verbosity (-v or -vv)
--iupac heteorzygotes are encoded with IUPAC codes
As requested, the sequence names in example.fasta
are, e.g.,
Sheep-1
, Sheep-2
, and so on. The following code converts the file
example.fasta
into the counts file example_from_fasta.cf
:
FastaToCounts.py example.fasta example_from_fasta.cf
Conversion scripts
- CountsToFasta.py: Convert a counts file to a fasta file.
- FastaToCounts.py: Convert a fasta file to counts format.
- FastaToVCF.py: Convert a fasta file to variant call format.
- FastaVCFToCounts.py: Convert a fasta reference with VCF files to counts format.
- FilterMSA.py: Filter a multiple sequence alignment
file (apply standard filters; cf.
libPoMo
). - GPToCounts.py: Experimental. Convert gene prediction files with reference to counts format.
- MSAToCounts.py: Convert multiple sequence alignments with VCF files to counts format.
Each script comes with its own documentation. Please execute, e.g.,
FastaToCounts.py --help
All conversion scripts can be found in the scripts folder.
Documentation
If you are interested in cflib
itself, please refer to the
cflib reference manual.
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
Hashes for cflib_pomo-1.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd70aad175034433fe9340ed51a447498274562b8b6895495c0f64ef84a743e6 |
|
MD5 | b1638d2a85584c8bc1a8a45db58badb3 |
|
BLAKE2b-256 | 5d6515f9e0c0a5fd7eb5523fd67b9342b6e56a54f78516bbd6a63a59759634ce |