Skip to content
Snippets Groups Projects
Commit a647d08d authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Reflect the fact that delete_existing is now a separate method in BasicMapper.pm

parent 26aa4738
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,9 @@ $mapper->xref($xref); # attach xref object to mapper object
print "\nDumping xref & Ensembl sequences\n";
$mapper->dump_seqs($location);
print "\nDeleting old data\n" if ($deleteexisting);
$mapper->delete_existing() if ($deleteexisting);
print "\nChecking external_db table\n" if ($upload);
$mapper->upload_external_db() if ($upload);
......@@ -196,7 +199,7 @@ print "\nParsing mapping output\n";
$mapper->parse_mappings();
print "\nUploading xrefs\n" if ($upload);
$mapper->do_upload($deleteexisting) if ($upload);
$mapper->do_upload() if ($upload);
print STDERR "*** All finished ***\n";
......
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