I am trying to break the DNA sequence into triplets
sequence = "ATCGCCACCATCGCG"
desired output = ['ATC', GCC' 'ACC']
Not quite sure how would I do that?
I am trying to break the DNA sequence into triplets
sequence = "ATCGCCACCATCGCG"
desired output = ['ATC', GCC' 'ACC']
Not quite sure how would I do that?