Dna encoding rule1
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi I have an issue storing the DNA sequenc using for loop. If some one can help me.
x=[2 34 50 21];
[m n]=size(x);
mn=m*n;
P= [];
for i=1:length(x)
Q= convert_to_dna2(x(i));
P=Q(i);
end
output is 'GGGA'%error
requirment CAAACACACATAGGGA
2 Commenti
Ameer Hamza
il 18 Giu 2020
How is the function convert_to_dna2 defined? What is the mapping rule between x=[2 34 50 21] and CAAACACACATAGGGA.
Risposte (0)
Vedere anche
Categorie
Scopri di più su Genomics and Next Generation Sequencing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!