search for: bcdefgop

Displaying 1 result from an estimated 1 matches for "bcdefgop".

Did you mean: bcdefg
2010 Jul 07
3
use sliding window to count substrings found in large string
Hello together, I'm looking for advice on how to do some tests on strings. What I want to do is the following: (just an example, real strings/sequence are about 200-400 characters long) given set of Strings: String1 abcdefgh String2 bcdefgop use a sliding window of size x to create an vector of all subsequences of size x found in the set (order matters! ). Now create, for every string in the set, an vector containing the counts on how often each subsequence was found in this particular string. It would be great if someone could gi...