Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: DNA Reverse Complement

by jkahn (Friar)
on Sep 14, 2002 at 05:12 UTC ( [id://197795]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub revdnacomp {
      # my $dna = @_;  
    ...
      $revcomp =~ tr/ACGTacgt/TGCAtgca/;
      return $revcomp;
    }
    
  2. or download this
    sub revcompl { # operates on all elements passed in
      my (@dna) = @_;
    ...
      }
      return @done; # or reverse @done;  # what's best semantics?
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (9)
As of 2024-04-18 11:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found