my$add_syn_sth=$self->core->dbc->prepare('insert ignore into external_synonym (xref_id, synonym) values (?, ?)');
$sth=$self->xref->dbc->prepare('select s.name, s.source_id, count(*), x.info_type, s.priority_description from xref x, object_xref ox, source s where ox.xref_id = x.xref_id and x.source_id = s.source_id and ox_status = "DUMP_OUT" group by s.name, s.source_id, x.info_type');
my$get_xref_interpro_sth=$self->xref->dbc->prepare("select x.xref_id, x.accession, x.version, x.label, x.description, x.info_type, x.info_text from xref x ,source s where s.source_id = x.source_id and s.name like 'Interpro'");
...
...
@@ -467,8 +477,11 @@ GSQL
$get_interpro_sth->finish;
$add_interpro_sth->finish;
$transaction_end_sth->execute();
# foreach my $type (qw(MISC DEPENDENT DIRECT SEQUENCE_MATCH INFERRED_PAIR)){
$transaction_start_sth->execute();
##########
# DIRECT #
...
...
@@ -692,6 +705,7 @@ WEL
}
$transaction_end_sth->execute();
my$sth_stat=$self->xref->dbc->prepare("insert into process_status (status, date) values('core_loaded',now())");