We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640a7f6 commit e399057Copy full SHA for e399057
init.py
@@ -39,6 +39,8 @@ def install_tskibd():
39
cd tskibd
40
git checkout 8a3aba38067143bcc7934fb8d8a56124e7a88c92
41
git submodule update --init --recursive
42
+ # avoid error when compiled on macos
43
+ mv tskit/c/VERSION tskit/c/VERSION.txt
44
meson build
45
ninja -C build tskibd
46
cd ../
@@ -67,7 +69,8 @@ def install_hmmibd():
67
69
git checkout a2f796ef8122d7f6b983ae9ac4c6fba35afcd3aa
68
70
sed -i -e 's/const double rec_rate = 7.4e-7/const double rec_rate = 6.67e-7/' \
71
hmmIBD.c
- x86_64-conda_cos6-linux-gnu-gcc -o hmmIBD -O3 -lm -Wall hmmIBD.c
72
73
+ $CC -o hmmIBD -O3 -lm -Wall hmmIBD.c
74
cd ..
75
cp hmmIBD/hmmIBD bin/hmmIBD
76
rm -rf hmmIBD
0 commit comments