This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Finding Out How Many Times A Particular Nucleotide Sequence Recurs In The Exome.

So I'm trying to figure out how many instances of given trinucleotide sequences are present in the human exome for purposes of enrichment analysis...what is the best way to do this?

sequence analysis nucleotide

1 answer

What I understand that You have to check many instances of given trinucleotide then I would suggest. Read sequences for each trinucleotide (Some thing with substring) and then maintain a Hash where each trinucleotide as key and occurrence as value. So once you will have hash ready then you can easily match based on Key-value pair !! So as per me this is will take least time as will read exome sequence only once .

Log in to answer this question.