Skip to content

Commit

Permalink
fixed the stdin bug with filterMatrix/pooledToMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lskatz committed Feb 17, 2016
1 parent b7b50f7 commit 2ee8bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/set_processPooledVcf.pl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sub main{
system("pooledToMatrix.sh -o $$settings{prefix}.snpmatrix.tsv $VCF");
die "ERROR with pooledToMatrix" if $?;

system("filterMatrix.pl --allowedFlanking $$settings{allowed} --ambiguities --Ns-as-ref < $snpMatrix > $filteredMatrix");
system("filterMatrix.pl --allowedFlanking $$settings{allowed} --ambiguities --Ns-as-ref $snpMatrix > $filteredMatrix");
die if $?;

my $unfilteredAlignment="$$settings{prefix}.aln.fasta";
Expand Down

0 comments on commit 2ee8bfa

Please sign in to comment.