Skip to content
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

Add coordinate wrapping #48

Merged
merged 12 commits into from
Aug 2, 2021
Merged

Add coordinate wrapping #48

merged 12 commits into from
Aug 2, 2021

Conversation

ojeda-e
Copy link
Member

@ojeda-e ojeda-e commented Jul 17, 2021

In this PR I added PBC conditions. Changes in this PR fix #36 and possibly #22

  • self.ag.wrap() added to__init__ and _single_frame.
  • Added tests for coordinate wrapping, including negative coordinates in x, y, and z, as suggested in Add test for the generation of z_ref (core_fast_leaflet) on toy system #22
  • Since PBC has an effect on the overall results, respective tests for results.z_surface and results.mean were updated.
  • I am not sure mentors would be interested in keeping previous tests, so I didn't delete but marked them as xfail(reason="PBC conditions not applied.") (See line 276 is tests_membrane_curvature.py.

@orbeckst @lilyminium @IAlibay are there any other relevant tests I am missing here?
Thanks

@pep8speaks
Copy link

pep8speaks commented Jul 17, 2021

Hello @ojeda-e! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:

There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻

Comment last updated at 2021-08-02 19:09:45 UTC

@codecov
Copy link

codecov bot commented Jul 17, 2021

Codecov Report

Merging #48 (4aa405c) into main (8df8b78) will increase coverage by 2.43%.
The diff coverage is 100.00%.

@ojeda-e ojeda-e added this to In progress in GSOC 2021 Jul 17, 2021
@lilyminium
Copy link
Member

lilyminium commented Jul 17, 2021

I might be missing something, but could you please explain how the coordinate wrapping treats PBC? As far as I can tell you're still not treating the boundary rows and columns of the surface grid?

I'm also not convinced that you can validly wrap atom coordinates when they have been rotated and translated as I believe you preprocess your trajectories to do. Perhaps you could instead get the translation, or translation + rotation matrix (to center on the protein if any) for each frame, and use that to transform your surface?

This is indirectly related to @orbeckst's project 5 of GSoC (https://github.com/MDAnalysis/mdanalysis/wiki/Project-Ideas-2021#project-5-general-unit-cell-representation), by the way. I'm just pointing that out of interest and as more motivation for the project to go forward rather than suggesting you implement it (although you are welcome to, of course!) Just storing the matrix for each frame of this analysis would be a great starting point.

Edit: sorry if I'm a bit short here, just trying to catch a few bars of signal when I can find it -- which is less than I originally expected

@ojeda-e
Copy link
Member Author

ojeda-e commented Jul 24, 2021

I pushed changes to use wrap instead of PBC. I didn't push changes for the keyword that will discriminate between raw and processed trajectories, as we discussed in this comment.
To clarify, should I add such changes in this PR as well @lilyminium @orbeckst @IAlibay
I think it is good enough with wrap. Instead, I can have clear documentation that says "wrap=True only if your Universe has a raw trajectory." or similar. We don't really need an extra keyword to discriminate the systems.

@ojeda-e
Copy link
Member Author

ojeda-e commented Jul 28, 2021

@orbeckst @lilyminium @IAlibay @richardjgowers do I have a green light here? Thanks.

@richardjgowers
Copy link
Member

@ojeda-e looks good but I'd clarify what wrapping is doing here. PBC treatment is confusing as it means one of two very different things

Copy link
Member

@orbeckst orbeckst left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would also add some documentation explaining when you should use wrap=True and explain in words what it achieves.

membrane_curvature/base.py Outdated Show resolved Hide resolved
@ojeda-e
Copy link
Member Author

ojeda-e commented Jul 28, 2021

I would also add some documentation explaining when you should use wrap=True and explain in words what it achieves.

Thanks, @orbeckst, initially I was planning to add the explanation of when to use wrap=True in the Usage (Issue #58)

Now that you point it out I'll add a brief description here in base.py and a more detailed one in Usage.

@ojeda-e
Copy link
Member Author

ojeda-e commented Jul 30, 2021

Can I have an approval here, please? @richardjgowers @orbeckst @lilyminium

Copy link
Member

@lilyminium lilyminium left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ojeda-e just a few suggestions :-)

membrane_curvature/base.py Outdated Show resolved Hide resolved
membrane_curvature/base.py Outdated Show resolved Hide resolved
membrane_curvature/tests/test_membrane_curvature.py Outdated Show resolved Hide resolved
GSOC 2021 automation moved this from In progress to Review in progress Jul 30, 2021
@ojeda-e ojeda-e changed the title Coordinate wrapping for PBC conditions Add coordinate wrapping Jul 30, 2021
@@ -211,7 +212,7 @@ def test_get_z_surface(x_bin, y_bin, x_range, y_range, expected_surface):
class TestMembraneCurvature(object):
@pytest.fixture()
def universe(self):
return mda.Universe(GRO_PO4_SMALL, XTC_PO4_SMALL)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I deleted the trajectory for now since I would need to create a new trajectory test with u.dimensions[2]=30. Skipping the trajectory the tests pass.

@ojeda-e
Copy link
Member Author

ojeda-e commented Jul 30, 2021

I discover a "little" bug in my test_po4_small.gro (see comment). Given that the size of the box in z was 30 A, ag.wrap was returning z=0 (and therefore everything was zero, surface, mean, Gaussian). I also deleted the trajectory test for now, as I mentioned in this comment. I don't think is strictly necessary, but if you think is best to add the traj, I will add it. I hope we all agree this change doesn't represent any harm or has a negative impact in the tests.

Thanks to @lilyminium for asking me to add tests with wrap=False and wrap=True because otherwise, I'd have never seen that bug. :)

@ojeda-e ojeda-e requested a review from lilyminium July 31, 2021 00:00
@ojeda-e
Copy link
Member Author

ojeda-e commented Aug 1, 2021

I added two fixtures for universes:

  • universe_dummy_wrap with atoms out of bounds in x,
  • universe_dummy_wrap_xy with atoms out of bounds in x and y.

Intentionally, I made the two fixtures match with the derived z_surface when wrap=True is applied. Then, the third fixture added dummy_surface. For each one of the universes with atoms out of bounds, I added a test for

  • .results.average_surface
  • .results.average_mean
  • .results.average_gaussian.

For each test that involves curvature, I calculated mean_curvature and gaussian_curvature directly from dummy_surface.

I also discover another bug in surface.py (see comment). But fixed it with an if statement. Hope you are ok with this change as well.

Thanks again @lilyminium

membrane_curvature/base.py Outdated Show resolved Hide resolved
membrane_curvature/base.py Outdated Show resolved Hide resolved
membrane_curvature/surface.py Show resolved Hide resolved
membrane_curvature/tests/test_membrane_curvature.py Outdated Show resolved Hide resolved
membrane_curvature/tests/test_membrane_curvature.py Outdated Show resolved Hide resolved
membrane_curvature/tests/test_membrane_curvature.py Outdated Show resolved Hide resolved
membrane_curvature/tests/test_membrane_curvature.py Outdated Show resolved Hide resolved
@lilyminium
Copy link
Member

Thank you for adding the new tests @ojeda-e!

@ojeda-e
Copy link
Member Author

ojeda-e commented Aug 2, 2021

The pushed changes include:

  • Corrected indexes in diagram:
    #   +-----------+          +-----------+
    #   |   | 8 | 9 | 7        | 7 | 8 | 9 |
    #   +-----------+          +-----------+
    # 6 | 4 | 5 |   |   --->   | 4 | 5 | 6 |
    #   +-----------+          +-----------+
    #   |   | 2 | 3 | 1        | 1 | 2 | 3 |
    #   +-----------+          +-----------+
    #
  • Added fixtures that returns membranecurvature.run() for each universe with unwrapped coordinates:

    • curvature_unwrapped_universe(self, universe_dummy_wrap)
    • curvature_unwrapped_universe_xy(self, universe_dummy_wrap_xy)
  • Removed previous tests for x and y coordinates as suggested, and added an extra one with negative z coordinates with 4 bins.

  • In surface.py, prints were replaced by warnings as suggested. However I have a question here:

    • I understand the purpose of logger in base.py. But for the warning in surface.py, I am not sure I should add a logger. Would it make sense to add a logger there?

Thanks @lilyminium

n_y_bins=y_bin).run()
avg_surface = mc.results.average_z_surface
def test_analysis_get_z_surface_wrap(self, curvature_unwrapped_universe, dummy_surface):
avg_surface = curvature_unwrapped_universe.results.average_z_surface
assert_almost_equal(avg_surface, dummy_surface)

# test surface in universe with atoms out of bounds in x and y
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could use the curvature_unwrapped_universe_xy fixture here too, right? (the line after)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, yeah, I missed that, thanks!

Copy link
Member

@lilyminium lilyminium left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @ojeda-e, the new indices are much easier to understand! I found another place you could use a fixture, but otherwise, this looks good to me :D

Would it make sense to add a logger there?

This might come down to personal preference. I don't ever log warnings because users can just logging.captureWarnings(True) in their scripts if they really want it to log. @orbeckst might have a different opinion.

GSOC 2021 automation moved this from Review in progress to Reviewer approved Aug 2, 2021
@ojeda-e
Copy link
Member Author

ojeda-e commented Aug 2, 2021

Thanks for checking this @lilyminium! This was a very buggy PR 🐛 but glad it's all fixed now! :D

@ojeda-e ojeda-e merged commit 8a52295 into main Aug 2, 2021
GSOC 2021 automation moved this from Reviewer approved to Done Aug 2, 2021
@ojeda-e ojeda-e deleted the issue36 branch August 29, 2021 20:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

Add pbc conditions to in mapping coordinates to grid.
6 participants