comparison beagle_phase.sh @ 20:f9a3d6a36ca5 draft

Uploaded
author nicolas
date Fri, 21 Oct 2016 06:31:27 -0400
parents
children 10afd4b2847b
comparison
equal deleted inserted replaced
19:4e97cb4310ac 20:f9a3d6a36ca5
1 #!/bin/bash
2
3
4 vcf_input=$1
5 out="out_phased"
6
7 directory=`dirname $0`
8
9 mkdir tmpdir$$
10
11 cp -rf $vcf_input tmpdir$$/input.vcf
12
13
14 java -jar $directory/beagle.jar gt=$vcf_input out=$out
15
16
17 rm -rf tmpdir$$