Skip to content
Snippets Groups Projects
Commit 16615a5a authored by Ian Longden's avatar Ian Longden
Browse files

fix for unmapped xref having possible multiple masters having same index

parent 09a6c22e
No related branches found
No related tags found
No related merge requests found
......@@ -622,7 +622,7 @@ DEP
my $parent;
$dep_unmapped_sth->bind_columns(\$xref_id, \$acc, \$version, \$label, \$desc, \$type, \$info, \$dbname, \$parent);
$set_unmapped_sth = $self->core->dbc->prepare("insert into unmapped_object (type, analysis_id, external_db_id, identifier, unmapped_reason_id, parent ) values ('xref', ?, ?, ?, '".$reason_id{"MASTER_FAILED"}."', ?)");
$set_unmapped_sth = $self->core->dbc->prepare("insert ignore into unmapped_object (type, analysis_id, external_db_id, identifier, unmapped_reason_id, parent ) values ('xref', ?, ?, ?, '".$reason_id{"MASTER_FAILED"}."', ?)");
@xref_list = ();
my $last_acc= 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment