Skip to content
Snippets Groups Projects
Commit 4eaa541c authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

analysis.logic_name should be lowercase.

parent f6b95137
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ my $variation_feature_adaptor = Bio::EnsEMBL::Registry->get_adaptor($species, "v
# TODO - variation from registry
# Clean up old features first. Also remove analysis and density type entry as these are recreated
my $sth = $slice_adaptor->dbc->prepare("DELETE df, dt, a, ad FROM analysis_description ad, density_feature df, density_type dt, analysis a WHERE ad.analysis_id = a.analysis_id AND a.analysis_id=dt.analysis_id AND dt.density_type_id=df.density_type_id AND a.logic_name='snpDensity'");
my $sth = $slice_adaptor->dbc->prepare("DELETE df, dt, a, ad FROM analysis_description ad, density_feature df, density_type dt, analysis a WHERE ad.analysis_id = a.analysis_id AND a.analysis_id=dt.analysis_id AND dt.density_type_id=df.density_type_id AND a.logic_name='snpdensity'");
$sth->execute();
# Sort slices by coordinate system rank, then by length
......
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