Mercurial > repos > miller-lab > genome_diversity
comparison evaluate_population_numbers.bash @ 17:a3af29edcce2
Uploaded Miller Lab Devshed version a51c894f5bed
author | miller-lab |
---|---|
date | Fri, 28 Sep 2012 11:57:18 -0400 |
parents | 8ae67e9fb6ff |
children |
comparison
equal
deleted
inserted
replaced
16:be0e2223c531 | 17:a3af29edcce2 |
---|---|
1 #!/usr/bin/env bash | |
2 | |
3 if [ $# -ne 3 ]; then | |
4 echo "usage" | |
5 exit 1 | |
6 fi | |
7 | |
8 input_ped_file="$1" | |
9 output_file="$2" | |
10 max_populations="$3" | |
11 | |
12 ADMIXTURE=admixture | |
13 | |
14 for (( i=1; $i <= $max_populations; i++ )); do | |
15 $ADMIXTURE --cv "$input_ped_file" $i 2>&1 | grep CV | perl -ne 's/CV error/CVE/; print;' >> "$output_file" | |
16 done | |
17 |