How I can get percent identity matrix from clustalw or clustalo?
1
0
Entering edit mode
12 weeks ago
Jiun • 0

I have a fasta file containing multiple sequences.
I can't get percentage identity matrix, despite of the option I added.

clustalo --infile={my_fasta} -t DNA --percent-id -o {out_file}

clustalw -infile={my_fasta} -type=DNA -pim -outfile={out_file}

How can I get percentage identity matrix from this software in my server?

clustalo clustalw msa multiplesequencealignment pairwise • 448 views
ADD COMMENT
0
Entering edit mode

I also tried option: -pim=TRUE or -pim=True

ADD REPLY
3
Entering edit mode
12 weeks ago
Mensur Dlakic ★ 27k

The option --percent-id will tell clustalo to calculate % identity instead of distance. Normally, it calculates the distance as [1 - % identity]. You still need to specify where the matrix will be saved (the -o switch specifies where to save the alignment), and also have to force full alignment.

clustalo --infile={my_fasta} -t DNA --percent-id --full --distmat-out={matrix_file} -o {out_file}
ADD COMMENT
0
Entering edit mode

Finally I can get the matrix of percent identity. Thank you so much!! :)

ADD REPLY

Login before adding your answer.

Traffic: 1439 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6