Open jiseonmin opened 2 months ago
Hi @jiseonmin - thanks for opening in this issue. I'm busy at this very moment with the first week of teaching here, but I'll try to look into this as soon as possible. It may be that there is just an issue with that example script.
Your point about numpy 2 is right, and it could cause incompatibilities with other dependencies of moments, and possibly with moments itself. For that reason, we've pinned the numpy requirement to <2.0.
Hello! I was running into some issues while running
examples/LD/parsing-and-inference-example.py
. FYI, I forked the main repository and made a new environment to test it. Is there a bug inLD/Inference.py
, or is it something specific to this example script? This is the error message I got:There were two small changes I had to make to go through the lines before the Godambe step. I don't think it's relevant for my question, but I will report them here just in case. First, numpy.2 doesn't seem to be compatible with scikit.allel, so I had to downgrade it. Next, I changed line 57 to
ts.write_vcf(fout, allow_position_zero=True)
fromts.write_vcf(fout)
. Thanks!