Conversation
kain88-de
approved these changes
Nov 18, 2016
Member
kain88-de
left a comment
There was a problem hiding this comment.
Looks good besides the TODO issue
|
|
||
| :class:`Topology` is the core object that holds all topology information. | ||
|
|
||
| TODO: Add in-depth discussion. |
Member
There was a problem hiding this comment.
Can you make an issue for that. So we are sure to remove all TODO:s in the docs before the release
richardjgowers
approved these changes
Nov 18, 2016
- added rst stubs for sphinx - updated rst docs (added links, reformatted, fixed, found out that Napoleon REQUIRES two lines before .. versionchanged/versionadded) - removed AtomGroup.rst TODO: - explain topology system and clean up core_modules.rst (work for @richardjgowers and @dotsdl)
find . -name '*.rst' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Universe)(MDAnalysis.core.universe.Universe)g' find . -name '*.py' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Universe)(MDAnalysis.core.universe.Universe)g' find . -name '*.rst' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.AtomGroup)(MDAnalysis.core.groups.AtomGroup)g' find . -name '*.py' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.AtomGroup)(MDAnalysis.core.groups.AtomGroup)g'
- AtomGroup.Atom --> groups.Atom - AtomGroup.Merge --> universe.Merge - AtomGroup.ResidueGroup --> groups.ResidueGroup (no SegmentGroup needed to be fixed, no Residue or Segment found) - core.Selection --> core.selection find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Atom)(MDAnalysis.core.groups.Atom)g' find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Merge)(MDAnalysis.core.universe.Merge)g' find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.ResidueGroup)(MDAnalysis.core.universe.ResidueGroup)g'
Member
Author
|
rebased against develop and force-pushed |
- broken reST links - removed some of the obviously old outdated topology discussions (but still need proper discussion of #363 changes) - added more cross references and SeeAlso - even more fixes everywhere
abiedermann
pushed a commit
to abiedermann/mdanalysis
that referenced
this pull request
Jan 5, 2017
- added missing docs for new topology system (MDAnalysis#363) - removed some of the obviously old outdated topology discussions (but still need proper discussion of MDAnalysis#363 changes – see issue MDAnalysis#1078 ) - added rst sphinx stubs for new modules in core - updated rst docs (added links, reformatted, fixed, found out that Napoleon REQUIRES two lines before .. versionchanged/versionadded) - removed AtomGroup.rst - restructured core_modules - fixed Universe and AtomGroup reST references (core changes in MDAnalysis#363) find . -name '*.rst' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Universe (MDAnalysis.core.universe.Universe)g' find . -name '*.py' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Universe)(MDAnalysis.core.universe.Universe)g' find . -name '*.rst' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.AtomGroup)(MDAnalysis.core.groups.AtomGroup)g' find . -name '*.py' -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.AtomGroup)(MDAnalysis.core.groups.AtomGroup)g' - fixed reST links for other changes in core (MDAnalysis#363) - AtomGroup.Atom --> groups.Atom - AtomGroup.Merge --> universe.Merge - AtomGroup.ResidueGroup --> groups.ResidueGroup (no SegmentGroup needed to be fixed, no Residue or Segment found) - core.Selection --> core.selection find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Atom)(MDAnalysis.core.groups.Atom)g' find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.Merge)(MDAnalysis.core.universe.Merge)g' find . \( -name '*.py' -o -name '*.rst' \) -print0 | xargs -0 perl -wpi~ -e 's(MDAnalysis\.core\.AtomGroup\.ResidueGroup)(MDAnalysis.core.universe.ResidueGroup)g' - many more doc fixes everywhere - broken reST links - added more cross references and SeeAlso
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.
There were no docs for the #363 changes and many reST links were broken.
Changes made in this Pull Request:
MDAnalysis.core.AtomGroup.AtomGroup-->MDAnalysis.core.groups.AtomGroupPR Checklist