view execute_beagle.sh @ 0:a929ef8dea25 draft default tip

planemo upload commit 11382afe87364aaafb19973470d5066229a6e34f
author dereeper
date Tue, 14 Aug 2018 07:59:19 -0400
parents
children
line wrap: on
line source

#!/bin/bash


vcf_input=$1
phase=$2
impute=$3
out_prefix="out"

mkdir tmpdir$$

cp -rf $vcf_input tmpdir$$/input.vcf

beagle gt=$vcf_input phase-its=$phase impute-its=$impute out=$out_prefix

gunzip $out_prefix.vcf.gz

rm -rf tmpdir$$