Mercurial > repos > dereeper > sniplay
view ped2bed/ped2bed.sh @ 12:88748d846a20 draft
planemo upload commit 11382afe87364aaafb19973470d5066229a6e34f
author | dereeper |
---|---|
date | Tue, 14 Aug 2018 08:21:55 -0400 |
parents | 420b57c3c185 |
children |
line wrap: on
line source
#!/bin/bash ped=$1 map=$2 bed=$3 fam=$4 bim=$5 logs=$6 directory=`dirname $0` mkdir tmpdir$$ cp -rf $ped tmpdir$$/input.ped cp -rf $map tmpdir$$/input.map plink --file tmpdir$$/input --out tmpdir$$/out --make-bed --noweb >>$logs 2>&1 mv tmpdir$$/out.bed $bed mv tmpdir$$/out.fam $fam mv tmpdir$$/out.bim $bim