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