comparison SNP_density/calculateSlidingWindowsSNPdensitiesFromVCF.sh @ 9:98c37a5d67f4 draft

Uploaded
author dereeper
date Wed, 07 Feb 2018 22:08:47 -0500
parents ebb0ac9b6fa9
children
comparison
equal deleted inserted replaced
8:6bf69b40365c 9:98c37a5d67f4
1 #!/bin/bash
2
3 tool_path=$(dirname $0)
4 input=$1
5 fileout=$2
6 fileout_bysample=$3
7 step=$4
8
9 perl $tool_path/CalculateSlidingWindowsSNPdensitiesFromVCF.pl -i $input -o $fileout -s $step
10
11 cp $fileout.by_sample $fileout_bysample
12 rm $fileout.by_sample
13