Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

one of these codes is not like the other

by speedo (Initiate)
on Jul 16, 2001 at 23:55 UTC ( [id://97156]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach $entry (@GILIST) {
        $seq1 = $gb->get_Seq_by_acc("$entry") || die "$entry is not a real
    + accession number.\n";
    ...
        $specieslist{$entry} = $speciesname;
        print p ("Gi# $entry is a $speciesname nucleotide sequence.\n");
    }
    
  2. or download this
        print p ("Gi# $entry is a $specieslist{$entry} nucleotide sequence
    +.\n");
    
  3. or download this
    foreach $entry (@GILIST) {
        $seq1 = $gb->get_Seq_by_acc("$entry") || die "$entry is not a real
    + accession number.\n";
    ...
     foreach my $entry (sort keys %specieslist) {
         print p ("GI# $entry is a $specieslist{$entry} nucleotide sequenc
    +e.\n");
    }
    
  4. or download this
    foreach $entry (@GILIST) {
        $seq1 = $gb->get_Seq_by_acc("$entry") || die "$entry is not a real
    + accession number.\n";
    ...
            print p ("Gi# $entry is a $speciesname nucleotide sequence.\n"
    +);
        }
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found