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"
    +);
        }
    }