blob: effc05641d2eb4682c9cf72a2a683ca6ceae7a5f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env bash
gemma=../bin/gemma
testCenteredRelatednessMatrixK() {
$gemma -g ../example/mouse_hs1940.geno.txt.gz -p ../example/mouse_hs1940.pheno.txt \
-a ../example/mouse_hs1940.anno.txt -gk -o mouse_hs1940
assertEquals "3763600" `wc -w < output/mouse_hs1940.cXX.txt`
# assertEquals "15f680c" `md5sum < output/mouse_hs1940.cXX.txt | head -c 7`
assertEquals "0.335" `head -c 5 output/mouse_hs1940.cXX.txt`
assertEquals "29.691" `awk '{s+=substr($1,0,6)}END{print s}' output/mouse_hs1940.cXX.txt`
}
shunit2=`which shunit2`
if [ -x "$shunit2" ]; then
. $shunit2
else
# try to run the locally installed shunit2
. ../shunit2-2.0.3/src/shell/shunit2
fi
|