in reply to How do I find match patterns between two DNA sequences?
There is very good documentation about regexes in perlre, the regex you are looking for is really simple to construct, just remember that the first parentheses in a regex puts the matched contents into $1.
After that you just need to quotemeta the string and you can use that inside a regex
If you have further problems, just ask again, but post the code you have already written
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I find match patterns between two DNA sequences?
by Bio_student (Novice) on Oct 26, 2010 at 15:27 UTC | |
by BrowserUk (Patriarch) on Oct 26, 2010 at 15:56 UTC |