File Coverage

lib/Bio/VertRes/Config/Recipes/EukaryotesMappingUsingStampy.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Bio::VertRes::Config::Recipes::EukaryotesMappingUsingStampy;
2             # ABSTRACT: Standard snp calling pipeline for bacteria
3              
4              
5 1     1   326447 use Moose;
  0            
  0            
6             extends 'Bio::VertRes::Config::Recipes::Common';
7             with 'Bio::VertRes::Config::Recipes::Roles::RegisterStudy';
8             with 'Bio::VertRes::Config::Recipes::Roles::Reference';
9             with 'Bio::VertRes::Config::Recipes::Roles::CreateGlobal';
10             with 'Bio::VertRes::Config::Recipes::Roles::EukaryotesMapping';
11              
12             override '_pipeline_configs' => sub {
13             my ($self) = @_;
14             my @pipeline_configs;
15            
16             $self->add_qc_config(\@pipeline_configs);
17             $self->add_eukaryotes_stampy_mapping_config(\@pipeline_configs);
18            
19             # Insert BAM Improvment here
20             return \@pipeline_configs;
21             };
22              
23             __PACKAGE__->meta->make_immutable;
24             no Moose;
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =head1 NAME
32              
33             Bio::VertRes::Config::Recipes::EukaryotesMappingUsingStampy - Standard snp calling pipeline for bacteria
34              
35             =head1 VERSION
36              
37             version 1.133090
38              
39             =head1 SYNOPSIS
40              
41             Standard snp calling pipeline for eukaryotes.
42             use Bio::VertRes::Config::Recipes::EukaryotesMappingUsingStampy;
43              
44             my $obj = Bio::VertRes::Config::Recipes::EukaryotesMappingUsingStampy->new(
45             database => 'abc',
46             limits => {project => ['Study ABC']},
47             reference => 'ABC',
48             reference_lookup_file => '/path/to/refs.index'
49             );
50             $obj->create;
51              
52             =head1 AUTHOR
53              
54             Andrew J. Page <ap13@sanger.ac.uk>
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is Copyright (c) 2013 by Wellcome Trust Sanger Institute.
59              
60             This is free software, licensed under:
61              
62             The GNU General Public License, Version 3, June 2007
63              
64             =cut