Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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 comentarios
Laura
Laura el 9 de En. de 2020
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 el 9 de En. de 2020
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.

Iniciar sesión para comentar.

Respuesta aceptada

Arthur Goldsipe
Arthur Goldsipe el 10 de En. de 2020
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')

Más respuestas (0)

Categorías

Más información sobre Phylogenetic Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by