Skip to content

Commit

Permalink
feat(qccollect): Added qccollect to utility scripts in copy and test
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikstranneheim committed Jul 13, 2019
1 parent f9fe054 commit e1f42b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions lib/MIP/Recipes/Install/Mip_scripts.pm
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,12 @@ sub install_mip_scripts {
my $pwd = cwd();

## Define MIP scripts and yaml files
my @mip_scripts = qw{ mip vcfparser.pl qccollect.pl };
my @mip_scripts = qw{ mip vcfparser.pl };

my %mip_sub_script = (
utility_scripts =>
[qw{ calculate_af.pl covplots_exome.R covplots_genome.R max_af.pl }],
utility_scripts => [
qw{ calculate_af.pl covplots_exome.R covplots_genome.R max_af.pl qccollect.pl }
],
t =>
[qw{ mip_install.test mip_analyse_rd_dna.test mip_core.t mip_analysis.test }],
templates => [
Expand Down
10 changes: 5 additions & 5 deletions t/mip_core.t
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Readonly my $NEWLINE => qq{\n};
Readonly my $SPACE => q{ };

my $config_file = catfile( dirname($Bin), qw(templates mip_rd_dna_config.yaml) );
my $VERBOSE = 1;
my $VERBOSE = 1;
our $VERSION = 1.03;

###User Options
Expand Down Expand Up @@ -287,8 +287,7 @@ sub mip_scripts {
## Returns :
## Arguments:

my @mip_scripts = qw{ qccollect.pl
vcfparser.pl };
my @mip_scripts = qw{ vcfparser.pl };

SCRIPT:
foreach my $script (@mip_scripts) {
Expand All @@ -297,8 +296,9 @@ sub mip_scripts {
}

my %mip_sub_scripts = (
utility_scripts =>
[qw{ calculate_af.pl covplots_exome.R covplots_genome.R max_af.pl }],
utility_scripts => [
qw{ calculate_af.pl covplots_exome.R covplots_genome.R max_af.pl qccollect.pl }
],
definitions => [
qw{ analyse_parameters.yaml cpanfile download_rd_dna_parameters.yaml download_rd_rna_parameters.yaml install_rd_dna_parameters.yaml install_rd_rna_parameters.yaml mandatory_parameter_keys.yaml mip_parameters.yaml non_mandatory_parameter_keys.yaml rd_dna_initiation_map.yaml rd_dna_parameters.yaml rd_rna_parameters.yaml rd_rna_initiation_map.yaml rd_dna_vcf_rerun_initiation_map.yaml rd_dna_vcf_rerun_parameters.yaml }
],
Expand Down

0 comments on commit e1f42b4

Please sign in to comment.