Supports Python 3.6, Python 3.7, PyPy 3.6 on Linux
We recommend you follow both the installation step for graph creation and for querying the graph, unless you are computing the graph in one place, and querying it in another.
Both steps require you to first install lemongraph.
git clone --recursive https://github.com/superphy/prairiedog.git cd prairiedog/ python3 -m venv venv . venv/bin/activate cd lemongraph/ apt-get install libffi-dev zlib1g-dev python-dev python-cffi python setup.py install
. venv/bin/activate pip install -r requirements.txt pip install snakemake
. venv/bin/activate python setup.py install
docker run -v /abs-path-to/outputs/:/p/outputs/ -v /abs-path-to/samples/:/p/samples/ superphy/prairiedog dgraph
. venv/bin/activate snakemake -j 24 --config samples=samples/
Via docker
# Without debug docker run -v /home/kevin/pdg-test/outputs:/p/outputs/ -v /home/kevin/pdg-test/samples:/p/samples/ superphy/prairiedog:c6ff5c63779a73de02c9b3de0f4225b29564f285 query TCGAGCATTAT GCATAGGCAAC # With debug docker run -v /home/kevin/pdg-test/outputs:/p/outputs/ -v /home/kevin/pdg-test/samples:/p/samples/ superphy/prairiedog:c6ff5c63779a73de02c9b3de0f4225b29564f285 --debug query TCGAGCATTAT GCATAGGCAAC
or virtualenv
. venv/bin/activate prairiedog ATACGACGCCA CGTCCGGACGT
You should get something like:
prairiedog GGGCGTTAAGT GGCAGGTTGAA prairiedog[21238] INFO Looking for all strings between GGGCGTTAAGT and GGCAGGTTGAA ... prairiedog[21238] INFO Found {'string': 'GGGCGTTAAGTTGCAGGGTATAGACCCGAAACCCGGTGATCTAGCCATGGGCAGGTTGAA', 'edge_type': 'SRR3295769.fasta', 'edge_value': '>SRR3295769.fasta|NODE_75_length_556_cov_349.837_ID_5290_pilon'} prairiedog[21238] INFO Found {'string': 'GGGCGTTAAGTTGCAGGGTATAGACCCGAAACCCGGTGATCTAGCCATGGGCAGGTTGAA', 'edge_type': 'SRR3665189.fasta', 'edge_value': '>SRR3665189.fasta|NODE_60_length_523_cov_287.621_ID_4672'}
Test genomes are included in the tests/ folders, while genomes for benchmarking should be included in the samples/ folder. To run tests and benchmarks:
python3 -m venv venv . venv/bin/activate pip install tox tox -v