Bioinformatics
Mostrar comentarios más antiguos
I am trying to come up with a multiple sequence alignment, however it keeps giving me error.
m157proteinalignment=multialign('m157k10aa','m157g1faa','m157g1baa')
This is what I put in, and I tried without the apostrophe and the comma (all the possible combinations). It always gives out: ??? Error using ==> multialign at 180 At least 3 input sequences must be supplied to MULTIALIGN.
The things in the parenthesis are amino acid sequences.
I was wondering if someone would be willing to tell me what I am doing wrong and how to do it step by step. I would greatly appreciate it!
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 15 de Jul. de 2011
m157proteinalignment = multialign({'m157k10aa','m157g1faa','m157g1baa'});
With the syntax you had, you were passing in 'mk157k10aa' as the single sequence name to work on, and then it was probably interpreting the rest as if you meant that the property named 'm157g1faa' should be given the value 'm157g1baa'
Categorías
Más información sobre Genomics and Next Generation Sequencing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!