-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeErrors in verification.py: MsmsSweeps #2229
Milestone
Comments
Can you show the full stack trace please? I don't understand why this wouldn't have shown up before. |
For the
|
For the mutations:
|
Hmm - I suspect this has been failing for a bit so and was masked by the pandas error check. Let's fix the obvious mutation problem, and see if we can drop the pandas |
Solved in #2230. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
l1409:
pd.error.ParseError
should bepd.errors.ParseError
.l348:
positions = [ mutation.position / msms_params["num_sites"] for mutation in tree_sequence.mutations() ]
should probably be:positions = tree_sequence.sites_position.copy()
(and then divide by "num_sites")The text was updated successfully, but these errors were encountered: