Hi,

I have to write my first Perl script . This scripts Searches for rare =
codons in nucleotide sequence . The nucleotide sequence is entered by =
the user in the format "ATTGCAA.." and then the program breaks this =
sequence in the groups of three alphabets like ATT,GCA...so no.=20

Please suggest .

Thanks
-----Original Message-----
From: Charles K. Clarkson [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 04, 2004 4:44 PM
To: [EMAIL PROTECTED]
Subject: RE: Checking filenames? [:: ?Kinda Solved? ::]


WC -Sx- Jones [mailto:[EMAIL PROTECTED] 
: 
: Hmmm, I get 3 Indians in only the first variable anyways  =/
: 
: 
: #! /usr/bin/perl -w
: 
: use strict;
: 
: # Make -w / use strict; happy...
: my (    $onelittle,
:          $twolittle,
:          $threelittle,
:     ) = 'Indians' x 3;


    Ahh! Grasshopper ...  :)

    Make 'Indians' an array.

my( $onelittle,
    $twolittle,
    $threelittle, ) = ('Indians') x 3;


HTH,

Charles K. Clarkson
-- 
Mobile Homes Specialist
254 968-8328



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to