When I initially read this, I did not assume the sequences in "data2.txt" were always as long as the corresponding sequences in "data1.txt". Prior replies have assumed they are and produced suggestions that are more efficient than what I propose. If the assumption is not true, this can be done with regular expressions. This snippet uses the OP's "seq1" to demonstrate constructing search and replace strings from the "hard mask" provided.
$seq = 'GGTACACAGAAGCCAAAGCAGGCTCCAGGCTCTGAGCTGTCAGCACAGAGACCGAT';
$mask = 'GGTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNT';
($srch = $mask) =~ s/(N+)/($1)/g;
$srch =~ tr/N/./;
$cnt = 1;
($repl = $mask) =~ s/N+/" . lc(\$" . $cnt++ . ") . "/ge;
print $srch, "\n", $repl, "\n\n", $seq, "\n";
$seq =~ s/$srch/$repl/ee;
print $seq, "\n";
The output should look like:
GGT(....................................................)T
GGT . lc($1) . T
GGTACACAGAAGCCAAAGCAGGCTCCAGGCTCTGAGCTGTCAGCACAGAGACCGAT
GGTacacagaagccaaagcaggctccaggctctgagctgtcagcacagagaccgaT
That said, if the aforementioned assumption does hold, I have to think that a search for efficiency should begin in the code that generated "data2.txt", if at all possible.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.