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

Example notebooks for HydrogenBondAnalysis #133

Merged
merged 24 commits into from
Jun 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6fbcdd6
Add examples of selecting groups from other groups
mieczyslaw Sep 25, 2020
2479c57
Remove selection keyword for select (#108)
lilyminium Sep 27, 2020
6be2e24
Documents for parallel analysis (#102)
yuxuanzhuang Oct 1, 2020
fb70da8
Change intersphinx link to latest objects.inv (#107)
lilyminium Oct 1, 2020
5332b11
Contacts (#84)
lilyminium Oct 6, 2020
4b0f8ee
updated align (#73)
lilyminium Dec 2, 2020
7e7be69
Add GH actions docs deployment and stable/dev versioning (#114)
lilyminium Dec 6, 2020
2a8b594
Only deploy docs on merge (#116)
lilyminium Dec 6, 2020
be8147c
Build CI docs from environment.yml (#117)
lilyminium Dec 6, 2020
95a8783
Activate mda-user-guide environment in conda (#118)
lilyminium Dec 6, 2020
6e91444
Move quickstart up to top level (#113)
lilyminium Dec 6, 2020
ac1683c
Add readthedocs config (#68)
lilyminium Dec 7, 2020
1de770b
Add windows installation note (#123)
lilyminium Dec 27, 2020
797b9af
Add and fix links to API docs and Quickstart (#129)
lilyminium Jan 4, 2021
0128cd6
Update general notebooks (#124)
lilyminium Jan 4, 2021
c1fa991
Update README.rst
lilyminium Jan 5, 2021
2d1f01a
Merge branch 'master' of https://github.com/MDAnalysis/UserGuide into…
Feb 2, 2021
1e73eaf
Add HydrogenBondAnalysis example notebooks
Feb 3, 2021
72ba913
Center image and math
Feb 3, 2021
81525ae
Merge remote-tracking branch 'upstream/develop' into hbonds
Jun 22, 2021
094cd3b
Update hbonds notebook
Jun 23, 2021
b3c8882
Update hbonds-selections notebook
Jun 23, 2021
d14dd75
Update hbonds-lifeimtes notebook
Jun 23, 2021
5e14d33
split mean_xy_area calculation over multiple lines
Jun 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ python:
version: 3.7

conda:
environment: environment.yml
environment: environment.yml
7 changes: 5 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
MDAnalysis User Guide
================================

|build|
|build| |binder|

|usergroup| |developergroup|


MDAnalysis is a Python toolkit to analyse molecular dynamics files and trajectories in `many popular formats`_. MDAnalysis can write most of these formats, too, together with atom selections for use in visualisation tools or other analysis programs. It provides a fast framework for complex analysis tasks, as well as flexible tooling to construct your own analyses.

This repository contains the `user guide`_ for MDAnalysis. The user guide originated as a `project for Google Season of Docs 2019-2020`_ .
Expand All @@ -31,3 +30,7 @@ This repository contains the `user guide`_ for MDAnalysis. The user guide origin
.. |build| image:: https://travis-ci.com/MDAnalysis/UserGuide.svg?branch=master
:alt: Build Status
:target: https://travis-ci.com/MDAnalysis/UserGuide

.. |binder| image:: https://mybinder.org/badge_logo.svg
:alt: Binder
:target: https://mybinder.org/v2/gh/MDAnalysis/UserGuide/HEAD?urlpath=tree%2Fdoc%2Fsource%2Fexamples
5 changes: 4 additions & 1 deletion doc/source/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ Chronological list of authors
2020
- Rocco Meli
- Irfan Alibay

- Yuxuan Zhuang
- Mieczyslaw Torchala
2021
- Paul Smith
3 changes: 2 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,10 @@ def sort_authors(filename):

# Configuration for intersphinx: refer to the Python standard library
# and other packages used by MDAnalysis
mda_version = mda.__version__
intersphinx_mapping = {'https://docs.python.org/': None,
'https://docs.scipy.org/doc/numpy/': None,
'https://www.mdanalysis.org/docs/': None,
f'https://docs.mdanalysis.org/{mda_version}/': None,
'https://docs.pytest.org/en/latest/': None,
'https://chemfiles.org/chemfiles.py/latest/': None,
'http://parmed.github.io/ParmEd/html/': None,
Expand Down
2 changes: 1 addition & 1 deletion doc/source/examples/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ MDAnalysis maintains a collection of Jupyter notebooks as examples of what the c
analysis/reduced_dimensions/README
analysis/polymers_and_membranes/README
analysis/volumetric/README

analysis/hydrogen_bonds/README
10 changes: 7 additions & 3 deletions doc/source/examples/analysis/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ Analysis
The :mod:`~MDAnalysis.analysis` module of MDAnalysis provides the tools needed to analyse your data.
Several analyses are included with the package. These range from standard algorithms
(e.g. :ref:`calculating root mean squared quantities <alignment-and-rms>`) to unique algorithms such as
the `path similarity analysis <examples/analysis/trajectory_similarity/psa.ipynb>`__.
the `path similarity analysis <trajectory_similarity/psa.ipynb>`__.

Generally these bundled analyses are contributed by various researchers who use the code for their own work.
Please refer to the individual module documentation or relevant user guide tutorials for additional
references and citation information.

If you need functionality that is not already provided in MDAnalysis, there are
`several ways to write your own analysis <examples/analysis/custom_trajectory_analysis.ipynb>`__.
`several ways to write your own analysis <custom_trajectory_analysis.ipynb>`__.

If you want to run your own script in parallel in MDAnalysis, here is a `tutorial on make your code parallelizable
<custom_parallel_analysis.ipynb>`__.


Imports and dependencies
Expand Down Expand Up @@ -49,4 +51,6 @@ them separately, e.g.::

.. include:: /examples/analysis/reduced_dimensions/README.rst

.. include:: /examples/analysis/polymers_and_membranes/README.rst
.. include:: /examples/analysis/polymers_and_membranes/README.rst

.. include:: /examples/analysis/hydrogen_bonds/README.rst
2 changes: 1 addition & 1 deletion doc/source/examples/analysis/alignment_and_rms/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ The :mod:`MDAnalysis.analysis.align` and :mod:`MDAnalysis.analysis.rms` modules
:maxdepth: 1

/examples/analysis/alignment_and_rms/aligning_structure_to_another
/examples/analysis/alignment_and_rms/aligning_trajectory_to_first_frame
/examples/analysis/alignment_and_rms/aligning_trajectory
/examples/analysis/alignment_and_rms/aligning_trajectory_to_frame
/examples/analysis/alignment_and_rms/rmsd
/examples/analysis/alignment_and_rms/pairwise_rmsd
/examples/analysis/alignment_and_rms/rmsf
Loading