Bioinformatics
Afficher commentaires plus anciens
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!
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 15 Juil 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'
Catégories
En savoir plus sur Genomics and Next Generation Sequencing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!