Bio::ASN1::Sequence is a regular expression-based Perl Parser for ASN.1-formatted NCBI Sequences.
SYNOPSIS
use Bio::ASN1::Sequence;
my $parser = Bio::ASN1::Sequence->new('file' => "downloaded.asn1");
while(my $result = $parser->next_seq)
{
# extract data from $result, or Dumpvalue->new->dumpValue($result);
}
# a new way to get the $result data hash for a particular sequence id:
use Bio::ASN1::Sequence::Indexer;
my $inx = Bio::ASN1::Sequence::Indexer->new(-filename => 'seq.idx');
my $seq = $inx->fetch_hash('AF093062');
# for creation of .idx index files please refer to
# Bio::ASN1::Sequence::Indexer perldoc
Product's homepage
Requirements:
· Perl