Added unwrap and wrap transformations#2020
Closed
davidercruz wants to merge 22 commits intoMDAnalysis:developfrom
Closed
Added unwrap and wrap transformations#2020davidercruz wants to merge 22 commits intoMDAnalysis:developfrom
davidercruz wants to merge 22 commits intoMDAnalysis:developfrom
Conversation
* removed use of pytest.approx * removed mock decorator, playing badly with pytest fixtures
Using consistently np.int64 for the indices used in pkdtree avoids type errors when using unique_int_1d. This should reduce the number of failing tests on windows.
* Fixes Issue MDAnalysis#2021 with Windows xdr large file offset handling * on the Windows platform xdr file offsets are now forced to use a 64-bit storage type so that, for example, file seeks beyond 4 GB are correctly reported
corrected rotateby transformation calculation
* added an option to check for pairs within coordinate array using bruteforce_capped_self, pkdtree_capped_self + tests * Modified guess bonds to use capped function * seperated the self_capped_function, added tests, modified the guess_bonds function * modified CHANGELOG, and minor modifications * modified test for increased coverage, minor modifications to the self_capped_distance
…lysis#2022) * kdtree now works with pbc, modified _apply_kdtree method in pointselections * CHANGELOG
MDAnalysis#2011) * fixes Issue MDAnalysis#2001 - support for Tinker periodic boundary box
Contributor
|
Could you rebase against develop? (not merge) The test failure has been fixed in an other pr. |
…e_bytes BUG: Force 64-bit storage for xdr file offsets
Codecov Report
@@ Coverage Diff @@
## develop #2020 +/- ##
===========================================
- Coverage 88.45% 88.31% -0.14%
===========================================
Files 143 144 +1
Lines 17223 17241 +18
Branches 2637 2638 +1
===========================================
- Hits 15234 15227 -7
- Misses 1389 1407 +18
- Partials 600 607 +7
Continue to review full report at Codecov.
|
Contributor
|
Can you tell me what git command you used? It would help me understand what went wrong and how to fix it. |
Contributor
Author
|
Here's what I did:
git remote add upstream https://github.com/MDAnalysis/mdanalysis.git
git pull --rebase upstream develop
And then solved some conflicts and:
git rebase --continue
…On Tue, Aug 7, 2018 at 6:18 PM Jonathan Barnoud ***@***.***> wrote:
Can you tell me what git command you used? It would help me understand
what went wrong and how to fix it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#2020 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AkAGGYbrFvcq0WGyvl8mbvUh8GxM7Y2Pks5uOcvhgaJpZM4VuWN9>
.
|
|
|
||
| @pytest.mark.parametrize('weights', ( | ||
| " ", | ||
| "totallynotmasses", |
Member
|
@davidercruz that should have worked, but I guess it hasn't. Might be best to start a new branch and cherry-pick the commits you made so far. |
Contributor
Author
|
@richardjgowers So I should create a new PR and close this one? |
Contributor
|
It may be the easiest solution. Do not forget to reference this pr in the next one. Le 9 août 2018 11:36 PM, Davide Cruz <notifications@github.com> a écrit :@richardjgowers So I should create a new PR and close this one?
—You are receiving this because you commented.Reply to this email directly, view it on GitHub, or mute the thread.
|
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a wrap transformation based on
atoms.wrapand a unwrap transformation based on @richardjgowers 's_cutil.make_wholeThis is the last transformation in my GSOC project :D
PR Checklist