Mercurial > repos > nicolas > oghma
view beagle_phase.sh @ 100:09827a9f75a6 draft
Uploaded
| author | nicolas | 
|---|---|
| date | Mon, 31 Oct 2016 06:44:04 -0400 | 
| parents | 10afd4b2847b | 
| children | 
line wrap: on
 line source
#!/bin/bash # variable affectation vcf_input=$1 out="out_phased" # create temporary directory directory=`dirname $0` mkdir tmpdir$$ cp -rf $vcf_input tmpdir$$/input.vcf # launch beagle java -jar $directory/beagle.jar gt=$vcf_input out=$out # remove temporary directory rm -rf tmpdir$$
