# HG changeset patch # User nicolas # Date 1477045852 14400 # Node ID 27fb6c2a98a3a130eba6a4aa1019f2daddac7488 # Parent 58b58d95b0e0a43c0ecc1c97fc35bc0cb0529aab Uploaded diff -r 58b58d95b0e0 -r 27fb6c2a98a3 beagle_impute.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beagle_impute.sh Fri Oct 21 06:30:52 2016 -0400 @@ -0,0 +1,18 @@ +#!/bin/bash + + +vcf_input=$1 +ref=$2 +out="out_imputed" + +directory=`dirname $0` + +mkdir tmpdir$$ + +cp -rf $vcf_input tmpdir$$/input.vcf + + +java -Xmx2g -jar $directory/beagle.jar ref=$ref gt=$vcf_input out=$out + + +rm -rf tmpdir$$ \ No newline at end of file