comparison check_gwas_inputs/CheckGWASInputs.sh @ 1:420b57c3c185 draft

Uploaded
author dereeper
date Fri, 10 Jul 2015 04:39:30 -0400
parents
children
comparison
equal deleted inserted replaced
0:3e19d0dfcf3e 1:420b57c3c185
1 #!/bin/bash
2 hapmap=$1
3 trait=$2
4 out_hapmap=$3
5 out_trait=$4
6 stats=$5
7
8 directory=`dirname $0`
9 mkdir tmpdir$$
10 #cp -rf $input tmpdir$$/input
11
12 perl $directory/CheckGWASInputs.pl -h $hapmap -t $trait -o tmpdir$$/out >>$stats 2>&1
13
14 mv tmpdir$$/out.hapmap $out_hapmap
15 mv tmpdir$$/out.trait $out_trait
16
17