Entering edit mode
7.8 years ago
tpaisie
▴
80
Anyone know how I could run iqtree in a python script? I've been looking at different python packages and seem to have no luck. So if you know how to run iqtree in package or just how to run iqtree in a python script, your help would be greatly appreciated!!
A similar question was asked on Reddit: https://www.reddit.com/r/bioinformatics/comments/4u5dlh/software_options_for_inferring_phylogenies_with/
And see if https://twitter.com/etetoolkit helps
So do I understand you correctly that this is a command line tool you would like to run automatically with python? I'm completely ignorant about what iqtree is, but I've heard about python.
yeah so Iqtree is and command line executable that I use and I want to incorporated it into a python script that is a pipeline for making phylogenetic trees.
In python you can use the
subprocess
module for activating command line scripts. Also possible but not recommended isos.system
.