print"starting new seq_region at seq_region_id of $max_seq_region_id\n";
print"\nTo reset\ndelete from dna where seq_region_id >= $start_seq_region_id\ndelete from seq_region where seq_region_id >= $start_seq_region_id\n\n";
my($chr_coord_id,$contig_coord_id);
$sth=$dba->dbc->prepare('select coord_system_id from coord_system where name like ? and attrib like "%default_version%"')
||die"Could not prepare coord_system sql";
$sth->execute("chromosome")||die"Could not execute coord_system sql";
$sth->bind_columns(\$chr_coord_id)||die"What a bind NOT";
$sth->fetch()||die"Could not fetch coord_system_id";
$sth->execute("contig")||die"Could not execute coord_system sql";
$sth->bind_columns(\$contig_coord_id)||die"What a bind NOT";
$sth->fetch()||die"Could not fetch coord_system_id";
$sth->finish;
my$get_seq_region_sth=$dba->dbc->prepare("select seq_region_id, length from seq_region where name like ?")
||die"Could not prepare get_seq_region";
my$insert_seq_region_sth=$dba->dbc->prepare("insert into seq_region (seq_region_id, name, coord_system_id, length) values(?, ?, ?, ?)")||die"Could not prepare seq_region insert sql";
my$insert_dna_sth=$dba->dbc->prepare("insert into dna (seq_region_id, sequence) values (?, ?)")