Mercurial > repos > rico > testing_again
annotate evaluate_population_numbers.bash @ 0:4d28d3295ac3 default tip
Uploaded
| author | rico |
|---|---|
| date | Fri, 06 Apr 2012 13:46:42 -0400 |
| parents | |
| children |
| rev | line source |
|---|---|
| 0 | 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 >> "$output_file" | |
| 16 done | |
| 17 |
