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

Remove alt_allele entry if reset_to_parsing_finished is used

parent c8c2ac05
No related branches found
No related tags found
No related merge requests found
......@@ -956,7 +956,11 @@ sub remove_mapping_data{
$sql = "DELETE from mapping";
$sth = $self->xref->dbc->prepare($sql);
$sth->execute();
$sth->execute();
$sql = "DELETE from alt_allele";
$sth = $self->xref->dbc->prepare($sql);
$sth->execute();
return;
}
......
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