Help for this page

Select Code to Download


  1. or download this
    for my $target (@Accession) {
    
    }
    
  2. or download this
        my @found = grep /$match/, @GI;
    
  3. or download this
    use strict;
    use warnings;
    ...
        my @found = grep /$match/, @GI;
        print "$match\n", Dumper [ split /\|/, $_ ] for @found;
    }
    
  4. or download this
    use strict;
    use warnings;
    ...
    for (@accession) {
        print $genes{$_}[1], $/;
    }