Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

A less extreme change..

by TravelByRoad (Acolyte)
on Nov 24, 2003 at 14:28 UTC ( [id://309538]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if (      ($genome[$i] eq 'a') 
           && ($genome[$i+1] eq 'a')) { ++$tt; }
    ...
           && ($genome[$i+1] eq 'a')) { ++$ta; }
    
    ...
    
  2. or download this
    my $genome =   $genome[$i];
    my $genome1 =  $genome[$i+1];
    ...
           && ($genome1 eq 'a')) { ++$ta; }
    
    ...
    
  3. or download this
    my $genomepair =   $genome[$i] . $genome[$i+1];
    
    ...
    elsif (   $genomepair eq 'ta')  { ++$ta; }
    
    ...
    

Log In?
Username:
Password:

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

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

    No recent polls found