in reply to Genome UV Mutation Script -- Critique

You should really take a look at Bioperl. It ships with a Genbank parser. Would be something like
my $seq_io = Bio::SeqIO->new( -file => $file, format => 'genbank'); my $whole_genome = $seq_io->next_seq;
See perldoc Bio::SeqIO.

This parser is quite robust...Which is important as you will notice when you screen many different species ;)

Replies are listed 'Best First'.
Re^2: Genome UV Mutation Script -- Critique
by BrowserUk (Patriarch) on Mar 15, 2007 at 04:54 UTC
      thats not really an issue with this small prokaryotic genomes.

      Update: i was curious and tried this with Bioperl. It is indeed MUCH slower. Thanks for the hint.