Skip to content
Snippets Groups Projects
Commit d95eddd4 authored by Steve Trevanion's avatar Steve Trevanion
Browse files

update of logic name for vega genscans

parent 9ac2cd93
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,15 @@ sub copy_current_clone_info {
$sth->finish();
}
sub update_genscan {
my $self = shift;
$self->debug("Vega specific - updating analysis name for Genscans");
my $target = $self->target();
my $sth = $self->dbh()->prepare
("UPDATE $target.analysis set logic_name = 'Vega_Genscan' where logic_name = 'Genscan'");
$sth->execute();
$sth->finish();
}
sub update_clone_info {
my $self = shift;
......
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