seqpdist Kimura "method not available for amino acids" even though working with nucleotides

1 次查看(过去 30 天)
Hi, I am trying to use the seqpdist function in matlab (Matlab R2019a, academic license) to compute the pairwise distance between two sequences, with the Kimura method, however, I get the following error even though I am working with nucleotides, not amino acids:
Error using seqpdist (line 335)
Distance method not available for amino acids.
below a 2-line MWE:
ex = {'aagt', 'aatg'}
seqpdist(ex, 'Method', 'Kimura')
Error using seqpdist (line 335)
Distance method not available for amino acids.
I also tried with
ex = {'ACGT', 'AATG'}
ex = ['ACGT', 'AATG']
And got the same error. Can someone explain?
Thanks in Advance!
  3 个评论
Laura
Laura 2020-1-9
Thank you for your answer, (by the way, it should be "Alphabet" as opposed to "AlphabetValue" :)
I now get the following error:
Error using seqpdist (line 343)
The distance method selected cannot score gaps.
Thanks for your help!
Geoff Hayes
Geoff Hayes 2020-1-9
Yeah, I don't have this toolbox so was the documentation as a guide as to what parameters can be passed in. For your other error, score is the default algorithm (?) for ...how to treat sites with gaps. Alternative aglorithms are pairwise-del and complete-del can be used as
seqpdist(ex, 'Method', 'Kimura', 'Alphabet', 'NT', 'Indels', 'pairwise-del')
Though I don't know which (if any) is appropriate for Kimura.

请先登录,再进行评论。

采纳的回答

Arthur Goldsipe
Arthur Goldsipe 2020-1-10
As Geoff points out in the comments, the problem is that several of the default option values don't work for the Kimura distance method. By default, seqpdist assumes that you're using amino acids and that indels are scored. I confirmed that the following works for your example:
ex = {'aagt', 'aatg'};
seqpdist(ex, 'Method', 'Kimura', 'Alphabet', 'nt', 'Indels', 'complete-del')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Phylogenetic Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by