You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello while testing micca I encounter the following problem.
see:
/tmp/micca2/bin/micca tree -i ~tests/datas/micca/sample_data -o tree.tree --fasttree-gtr
Error: FastTree protein_alignment > tree
FastTree < protein_alignment > tree
FastTree -out tree protein_alignment
FastTree -nt nucleotide_alignment > tree
FastTree -nt -gtr < nucleotide_alignment > tree
FastTree < nucleotide_alignment > tree
FastTree accepts alignments in fasta or phylip interleaved formats
while looking at tp/_fasttree.py, noticed that when FastTree specific options is provided via
--fasttree-gtr or --fasttree-fastest, the relevant option for FatsTree is APPENDED to the command line.
thus generate something like that
fasttree -nt alignementfile -gtr
but fasttree is pretty picky with the order of options // argument. -gtr or -fastest option must precede inputfile
should be something like that
Hello while testing micca I encounter the following problem.
see:
while looking at tp/_fasttree.py, noticed that when FastTree specific options is provided via
--fasttree-gtr or --fasttree-fastest, the relevant option for FatsTree is APPENDED to the command line.
thus generate something like that
but fasttree is pretty picky with the order of options // argument. -gtr or -fastest option must precede inputfile
should be something like that
changing tp/_fasttree.py
from
to
solved the problem
regards
Eric
The text was updated successfully, but these errors were encountered: