You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not placing them in a matrix -- just returning the match coordinates (given strings s1 and s2 and a value of k) in an easy-to-parse format. Would be useful for @IshaanSD's work.
I'm not sure about what output format would be best -- should we return separate lists of forward, reverse-complementary, and palindromic matches? (Where each "match" is just a tuple of (s1 coord, s2 coord).) Maybe the most elegant option is making some sort of MatchResults class that stores all of these lists of matches.
The text was updated successfully, but these errors were encountered:
Not placing them in a matrix -- just returning the match coordinates (given strings
s1
ands2
and a value ofk
) in an easy-to-parse format. Would be useful for @IshaanSD's work.I'm not sure about what output format would be best -- should we return separate lists of forward, reverse-complementary, and palindromic matches? (Where each "match" is just a tuple of (s1 coord, s2 coord).) Maybe the most elegant option is making some sort of
MatchResults
class that stores all of these lists of matches.The text was updated successfully, but these errors were encountered: