Skip to content

Commit

Permalink
Merge pull request #1727 from nakib103/fix_qc_dump
Browse files Browse the repository at this point in the history
DumpVEP: fix QC step for using non-reference sequence
  • Loading branch information
likhitha-surapaneni authored Jul 25, 2024
2 parents 89164a3 + 2dd392a commit 9ac6dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/Pipeline/DumpVEP/QCDump.pm
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ sub check_dirs {

# get slices
my $sa = $dba->get_SliceAdaptor;
my @slices = @{$sa->fetch_all('toplevel')};
my @slices = @{$sa->fetch_all('toplevel', undef, 1)};
push @slices, map {$_->alternate_slice} map {@{$_->get_all_AssemblyExceptionFeatures}} @slices;
push @slices, @{$sa->fetch_all('lrg', undef, 1, undef, 1)} if $self->param('lrg');

Expand Down

0 comments on commit 9ac6dbd

Please sign in to comment.