Hi, I am using two different genomes of dragon fruit species and want to compare them by multiple alignment via "LASTZ" tool but the script giving error while using the following code. please help me to fix this code
lastz Guanhuabai.fa david_bowie.fa --notransition --multiple --ambiguous=iupac --step=20 --nogapped --format=maf > Guanhuabai_vs_david_bowie.maf
What is the error message?
Genome files contain multiple fasta sequences in the form of different chromosome names, e.g.,
>chr01
,>chr02
, etc. So I put the--multiple
command for this but after running the command I am getting the error ascannot understand ---multiple command
. If I remove the multiple command then this tool suggests to use--multiple
command because user using multiple fasta sequences in one file. So this is the main problem.From what I see
multiple
is a command, and should be given after the file name like this example from the documentation page:lastz critter.fa[multiple,unmask,nameparse=darkspace] /dev/stdin --masking=3
In the parlance of the lastz documentation, "multiple" is an action.
Actually, it the suggestion lastz makes uses different terminology. What is actually suggested was "consider using the multiple action". The readme file contains a table of actions, and "multiple" is the second action in that table.