Mercurial > repos > dereeper > sniplay
comparison ped2bed/ped2bed.sh @ 9:98c37a5d67f4 draft
Uploaded
author | dereeper |
---|---|
date | Wed, 07 Feb 2018 22:08:47 -0500 |
parents | 420b57c3c185 |
children |
comparison
equal
deleted
inserted
replaced
8:6bf69b40365c | 9:98c37a5d67f4 |
---|---|
1 #!/bin/bash | |
2 ped=$1 | |
3 map=$2 | |
4 bed=$3 | |
5 fam=$4 | |
6 bim=$5 | |
7 logs=$6 | |
8 | |
9 directory=`dirname $0` | |
10 mkdir tmpdir$$ | |
11 cp -rf $ped tmpdir$$/input.ped | |
12 cp -rf $map tmpdir$$/input.map | |
13 | |
14 plink --file tmpdir$$/input --out tmpdir$$/out --make-bed --noweb >>$logs 2>&1 | |
15 | |
16 mv tmpdir$$/out.bed $bed | |
17 mv tmpdir$$/out.fam $fam | |
18 mv tmpdir$$/out.bim $bim | |
19 | |
20 |