]> git.donarmstrong.com Git - biopieces.git/commitdiff
fixed encoding bug in bowtie_seq
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Thu, 5 Dec 2013 13:45:19 +0000 (13:45 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Thu, 5 Dec 2013 13:45:19 +0000 (13:45 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@2273 74ccb610-7750-0410-82ae-013aeee3265d

bp_bin/bowtie_seq

index 19368f84452db6ffb3def6777d1ac646e64c9d1e..07374216593d0a6f24d7fd858f6de3b21c6377ec 100755 (executable)
@@ -103,7 +103,7 @@ push @args, "-n $options->{ 'mismatches' }";
 push @args, "-v $options->{ 'mismatches' }";  # DANGER: using seed mismatches as alignment mismatches - may work, may not!
 push @args, "-f" if $type eq "FASTA";
 push @args, "-p $options->{ 'cpus' }";
-push @args, "--phred64-quals" unless $type eq "FASTA";
+push @args, "--phred33-quals" unless $type eq "FASTA";
 
 if ( defined $options->{ 'max_hits' } ) {
     push @args, "-k $options->{ 'max_hits' }";