Skip to content

Commit

Permalink
Merge pull request #18 from cancerit/dev
Browse files Browse the repository at this point in the history
Updated to use c implementation of alleleCounter
  • Loading branch information
keiranmraine committed Oct 6, 2014
2 parents dee6847 + 25bc3d4 commit 0652a57
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion perl/MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
}
},
"release_status" : "stable",
"version" : "v1.3.1"
"version" : "v1.4.0"
}
2 changes: 1 addition & 1 deletion perl/MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ no_index:
- inc
requires:
Const::Fast: 0.014
version: v1.3.1
version: v1.4.0
Binary file modified perl/docs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Ascat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use strict;
use Const::Fast qw(const);
use base 'Exporter';

our $VERSION = '1.3.1';
our $VERSION = '1.4.0';
our @EXPORT = qw($VERSION);

const my $LICENSE =>
Expand Down
5 changes: 2 additions & 3 deletions perl/lib/Sanger/CGP/Ascat/Implement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ sub allele_count {
my $sname = sanitised_sample_from_bam($input);
my $alleleCountOut = File::Spec->catfile($ac_out,$sname .'.allct');

my $allc_exe = _which('alleleCounter.pl');
my $allc_exe = _which('alleleCounter');
my $allc_lib = dirname($allc_exe);

my $command = "$^X ";
$command .= $allc_exe;
my $command = $allc_exe;
$command .= sprintf $ALLELE_COUNT_PARA, $input, $alleleCountOut, $options->{'snp_loci'};
$command .= '-m '.$options->{'minbasequal'} if exists $options->{'minbasequal'};

Expand Down

0 comments on commit 0652a57

Please sign in to comment.