comparison sort_bam.sh @ 2:0d8315be76b7

Uploaded
author biomonika
date Tue, 17 Feb 2015 21:59:51 -0500
parents
children
comparison
equal deleted inserted replaced
1:4c5de3a2c54e 2:0d8315be76b7
1 #!/bin/bash
2 results=$1;
3 bam_file=$2;
4
5 hash samtools 2>/dev/null || { echo "I require samtools in path but it's not installed. Aborting."; exit 1; }
6 echo "LINKYX_PATH:" $LINKYX_PATH
7 echo "SAMTOOLS:" $SAMTOOLS
8 echo "PATH:" $PATH
9 samtools sort $bam_file $results 2>log.txt
10