Finding a string in a string
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm studying biology and trying to take a sequence from and RNA like for example "AUGCACGGCAAC" and turn it into its aminoacid form like MHGN. I was able to check for aminoacids but I wasn't able to put out the results one after the other in a unified form. Any ideas?
0 comentarios
Respuestas (1)
Rik
el 23 de Jun. de 2021
Split into groups of 3 (with mat2cell or with regexp), use ismember to find the position of each codon in a dictionary array (which you need to make). Then you can use the positions to index the second part of the dictionary.
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings 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!