opuntia.fasta
, which is on my Desktop.I ran into two issues that were solved pretty easily. The first is that I don't usually manipulate the
$PATH
variable from the shell, but rather specify needed paths explicitly or add them to sys.path from within Python. However, PyCogent does not seem to look at sys.path
:When I run my script (below), I get this:
So, I did this from the command line before running my test script:
The other issue is that the Clustal app controller expects
clustalw
. I have clustalw2
. I don't know how to fix the App Controller, so I made a symbolic link in that directory:Come to think of it, I could have just done that from the Desktop and solved both issues at once. I held my breath, and did this:
Note: as usual, all code is executed from the command line by doing
python script.py
.