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