Dear all, When there are more than one genbank records in a file, except by splitting the file into separate records, what can I do to transverse the records? $obj=Bio::SeqIO->new(-file=>$gbfile,-format=>"genbank"); $seqobj=$obj->next_seq(); Do I just use another $obj->next_seq() so it will point to another record? Thanks for your advice.