Given a string/pattern, how would you search within a long sequence, for strings of the same length as the given pattern that match exactly or with a difference of one character?
For example: Looking for ATGG in "ATCGGGATTGGGG..." --- you would find: ATCGGGATTGGGG...
Also, I'd like know how to record the locations of these matches