Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: Lower-casing Substrings and Iterating Two Files together

by kirillm (Friar)
on Dec 27, 2008 at 16:16 UTC ( [id://732813]=note: print w/replies, xml ) Need Help??


in reply to Re: Lower-casing Substrings and Iterating Two Files together
in thread Lower-casing Substrings and Iterating Two Files together

Your proposal seem to assume that there will be one continuous sequence of the N characters in the mask. What if there are non-N characters between $start and $start+$length?

  • Comment on Re^2: Lower-casing Substrings and Iterating Two Files together

Replies are listed 'Best First'.
Re^3: Lower-casing Substrings and Iterating Two Files together
by linuxer (Curate) on Dec 27, 2008 at 16:26 UTC

    Very good question.

    I didn't know about those cases. I only can consider those cases, which are mentioned as examples.

    Update: Here's an update, so it should consider that special case you mentioned. But I had to change the code and remove (r)index.

    #!/usr/bin/perl use strict; use warnings; open SEQ, '<', 'data1.dat' or die $!; open MASK, '<', 'data2.dat' or die $!; while ( my $seq = <SEQ> ) { my $mask = <MASK>; while ( $mask =~ m/(N+)/g ) { my $length = length $1; my $start = pos($mask) - $length; my $lc_seq = lc substr( $seq, $start, $length ); substr( $seq, $start, $length, $lc_seq ); } print $seq; } close MASK; close SEQ;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://732813]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-19 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found