Skip to content

Commit

Permalink
Merge pull request #119 from Milt0n/master
Browse files Browse the repository at this point in the history
Removal of DistanceEst dependency in example script
  • Loading branch information
jts committed Jul 19, 2016
2 parents 6437e23 + a98f315 commit 2f269ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/examples/sga-ecoli-miseq.sh
Expand Up @@ -21,7 +21,6 @@ BWA_BIN=bwa
SAMTOOLS_BIN=samtools
BAM2DE_BIN=sga-bam2de.pl
ASTAT_BIN=sga-astat.py
DISTANCE_EST=DistanceEst

# The number of threads to use
CPU=8
Expand Down Expand Up @@ -50,7 +49,7 @@ MIN_PAIRS=10
#

# Check the required programs are installed and executable
prog_list="$SGA_BIN $BWA_BIN $SAMTOOLS_BIN $BAM2DE_BIN $DISTANCE_EST $ASTAT_BIN"
prog_list="$SGA_BIN $BWA_BIN $SAMTOOLS_BIN $BAM2DE_BIN $ASTAT_BIN"
for prog in $prog_list; do
hash $prog 2>/dev/null || { echo "Error $prog not found. Please place $prog on your PATH or update the *_BIN variables in this script"; exit 1; }
done
Expand Down

0 comments on commit 2f269ad

Please sign in to comment.