I have a string of DNA bases and I need to count the number of times I have two identical bases at a certain distance from each other.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Nitzan Kahn
am 18 Jun. 2018
Kommentiert: Nitzan Kahn
am 18 Jun. 2018
I have a string of DNA bases and I need to count the number of times I have two identical bases at a certain distance from each other. For example- number of times for 'AA', 'AXA', 'AXXA' and so on.. Would love some help with finding the right function.
0 Kommentare
Akzeptierte Antwort
Guillaume
am 18 Jun. 2018
sum(regexp(yourchararray, 'A[^A]{0,2}A'))
2 being the maximum distance between two A (and 0 the minimum). The regexp says match A followed by 0 to 2 not A, followed by a A.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Genomics and Next Generation Sequencing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!