Hi,
I've got a table of sequences of proteins.
ProteinID AASeq
1 MSTILEKISAIES..........
I've created a SP that passes a search string of up to 100 Protein Characters.
I need to populate tblMatch that has a record for substrings that have matches to the records in tblProtein greater than 20 characters in length.
I'm close, but I am getting duplicate records when I shift one character to the right in the search string.
What I need to do is to look for a 20 character match, expand that until it no longer matches, add that record to tblMatch, but then NOT include the match when my search string shifts one character to the right and THAT is what I am having trouble with.
Also I can't exclude based on ProteinID in tblMatch because I need to search the remaining part of the AA sequence as well for a >20 character match.
Always find great help in organizing my thought here. THanks in advance.
Best,
Scott
match
I've got a table of sequences of proteins.
ProteinID AASeq
1 MSTILEKISAIES..........
I've created a SP that passes a search string of up to 100 Protein Characters.
I need to populate tblMatch that has a record for substrings that have matches to the records in tblProtein greater than 20 characters in length.
I'm close, but I am getting duplicate records when I shift one character to the right in the search string.
What I need to do is to look for a 20 character match, expand that until it no longer matches, add that record to tblMatch, but then NOT include the match when my search string shifts one character to the right and THAT is what I am having trouble with.
Also I can't exclude based on ProteinID in tblMatch because I need to search the remaining part of the AA sequence as well for a >20 character match.
Always find great help in organizing my thought here. THanks in advance.
Best,
Scott
match