Splitting the characters of string

2 visualizaciones (últimos 30 días)
Reshma Ravi
Reshma Ravi el 22 de Mayo de 2017
Respondida: KSSV el 22 de Mayo de 2017
For example I have a string that is, aatcgatcaagtca and I want to split it into four letters each that is,aatc,atcg,tcga,cgat and so on.

Respuestas (1)

KSSV
KSSV el 22 de Mayo de 2017
str = 'aatcgatcaagtca' ;
iwant = [str(1:end-3)' str(2:end-2)' str(3:end-1)' str(4:end)'] ;
There could be more elegant way...

Categorías

Más información sobre Genomics and Next Generation Sequencing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by