diff --git a/misc-scripts/xref_mapping/XrefMapper/ProcessPrioritys.pm b/misc-scripts/xref_mapping/XrefMapper/ProcessPrioritys.pm index 3f2054398026c9bad01f02c930d5f96ee5105d4e..53f6004f8e5f714a842a9dd30e33432522d92fdd 100644 --- a/misc-scripts/xref_mapping/XrefMapper/ProcessPrioritys.pm +++ b/misc-scripts/xref_mapping/XrefMapper/ProcessPrioritys.pm @@ -280,8 +280,8 @@ sub process_dependents{ # determine object type of best_ensembl_ids. This will be the only type left once we've deleted the other object_xrefs my %splonk; foreach my $ens_id (@$best_ensembl_ids) { - $get_type_sth->execute(); - my ($type) = $get_type_sth->fetchall_array($ens_id,$new_master_xref_id); + $get_type_sth->execute($ens_id,$new_master_xref_id); + my ($type) = $get_type_sth->fetchrow_array(); $splonk{$ens_id} = $type; }