Skip to content
Snippets Groups Projects
Commit bf06a56f authored by Bronwen Aken's avatar Bronwen Aken
Browse files

Actually, rather don't include non-ref sequences for now. (The haplotypes...

Actually, rather don't include non-ref sequences for now. (The haplotypes don't have their own Chromosome summary page so these stats won't be displayed.)
parent 28bb0c47
No related branches found
No related tags found
No related merge requests found
......@@ -110,8 +110,9 @@ my $snps_present = $snpstats && variation_attach( $db );
my $slice_adaptor = $db->get_SliceAdaptor();
my $attrib_adaptor = $db->get_AttributeAdaptor();
# Include non-reference sequences ie. haplotypes for human
my $top_slices = $slice_adaptor->fetch_all( "toplevel" , undef, 1);
# Do not include non-reference sequences ie. haplotypes for human
#my $top_slices = $slice_adaptor->fetch_all( "toplevel" , undef, 1);
my $top_slices = $slice_adaptor->fetch_all( "toplevel" );
foreach my $slice (@$top_slices) {
......
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