Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aseetharam committed Aug 31, 2017
1 parent ab7a3d6 commit dbee406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runBWA.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ THREADS="16"
READ1="$2"
READ2="$3"
SAM=$(basename ${READ1%.*} | cut -f 1-2 -d "_")
bwa mem -M -x ont2d -t ${THREADS} ${REF} ${READ1} ${READ2} > ${SAM}.sam
bwa mem -M -t ${THREADS} ${REF} ${READ1} ${READ2} > ${SAM}.sam
samtools view --threads 16 -b -o ${SAM}.bam ${SAM}.sam
samtools sort -m 8G -o ${SAM}_sorted.bam -T ${SAM}_temp --threads 16 ${SAM}.bam

0 comments on commit dbee406

Please sign in to comment.