Name | MDAnalysis JSON |
Version |
1.0.1
JSON |
| download |
home_page | https://www.mdanalysis.org |
Summary | An object-oriented toolkit to analyze molecular dynamics trajectories generated by CHARMM, Gromacs, NAMD, LAMMPS, or Amber. |
upload_time | 2021-02-19 18:35:40 |
maintainer | Richard Gowers |
docs_url | None |
author | Naveen Michaud-Agrawal |
requires_python | >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3,!=3.4.*,<3.9 |
license | GPL 2 |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
|numfocus| |build| |cov| [*]_
|docs| |devdocs| |usergroup| |developergroup| |anaconda| |mybinder|
MDAnalysis_ is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interactions of drugs with proteins to novel materials. It is widely used in the scientific community and is written by scientists for scientists.
It works with a wide range of popular simulation packages including Gromacs, Amber, NAMD, CHARMM, DL_Poly, HooMD, LAMMPS and many others — see the lists of supported `trajectory formats`_ and `topology formats`_.
MDAnalysis also includes widely used analysis algorithms in the `MDAnalysis.analysis`_ module.
.. _numfocus-fiscal-sponsor-attribution:
The MDAnalysis project uses an `open governance model`_ and is fiscally sponsored by `NumFOCUS`_. Consider making
a `tax-deductible donation`_ to help the project pay for developer time, professional services, travel, workshops, and a variety of other needs.
.. image:: https://www.mdanalysis.org/public/images/numfocus-sponsored-small.png
:alt: NumFOCUS (Fiscally Sponsored Project)
:target: https://numfocus.org/project/mdanalysis
:align: center
This project is bound by a `Code of Conduct`_.
Example analysis script
=======================
.. code:: python
import MDAnalysis as mda
# Load simulation results with a single line
u = mda.Universe('topol.tpr','traj.trr')
# Select atoms
ag = u.select_atoms('name OH')
# Atom data made available as Numpy arrays
ag.positions
ag.velocities
ag.forces
# Iterate through trajectories
for ts in u.trajectory:
print(ag.center_of_mass())
Documentation
=============
**New users** should read the `Quickstart Guide`_ and might want to
look at our videos_, in which core developers explain various aspects
of MDAnalysis.
**All users** should read the `User Guide`_.
**Developers** may also want to refer to the `MDAnalysis API docs`_.
A growing number of **tutorials_** are available that explain how to
conduct RMSD calculations, structural alignment, distance and contact
analysis, and many more.
Installation and availability
=============================
The latest release can be **installed via ``pip`` or ``conda``** as
described in the `Installation Quick Start`_.
**Source code** is hosted in a git repository at
https://github.com/MDAnalysis/mdanalysis and is available under the
GNU General Public License, version 2 (see the file LICENSE_).
Contributing
============
Please report **bugs** or **enhancement requests** through the `Issue
Tracker`_. Questions can also be asked on the `user mailing list`_.
If you are a **new developer** who would like to start contributing to
MDAnalysis get in touch on the `developer mailing list`_. To set up a
development environment and run the test suite read the `developer
guide`_.
Citation
========
When using MDAnalysis in published work, please cite the following
two papers:
* R. J. Gowers, M. Linke, J. Barnoud, T. J. E. Reddy,
M. N. Melo, S. L. Seyler, D. L. Dotson, J. Domanski,
S. Buchoux, I. M. Kenney, and O. Beckstein. MDAnalysis:
A Python package for the rapid analysis of molecular
dynamics simulations. In S. Benthall and S. Rostrup,
editors, Proceedings of the 15th Python in Science
Conference, pages 102-109, Austin, TX, 2016. SciPy.
doi:`10.25080/Majora-629e541a-00e`_
* N. Michaud-Agrawal, E. J. Denning, T. B. Woolf,
and O. Beckstein. MDAnalysis: A Toolkit for the Analysis of Molecular
Dynamics Simulations. *J. Comput. Chem.* **32** (2011), 2319--2327.
doi:`10.1002/jcc.21787`_
For citations of included algorithms and sub-modules please see the references_.
.. Footnotes
.. [*] **build**: Unit testing is for the whole package; **coverage** is
shown for the core library modules and the analysis modules.
.. _NumFOCUS: https://numfocus.org/
.. _open governance model: https://www.mdanalysis.org/about/#governance
.. _tax-deductible donation: https://numfocus.org/donate-to-mdanalysis
.. _`Code of Conduct`: https://www.mdanalysis.org/pages/conduct/
.. _trajectory formats: https://docs.mdanalysis.org/documentation_pages/coordinates/init.html#id1
.. _topology formats: https://docs.mdanalysis.org/documentation_pages/topology/init.html#supported-topology-formats
.. _MDAnalysis: https://www.mdanalysis.org
.. _LICENSE:
https://github.com/MDAnalysis/mdanalysis/blob/master/LICENSE
.. _`Installation Quick Start`:
https://www.mdanalysis.org/pages/installation_quick_start/
.. _`MDAnalysis.analysis`: https://docs.mdanalysis.org/documentation_pages/analysis_modules.html
.. _`tutorials`: https://userguide.mdanalysis.org/examples/README.html
.. _`videos`: https://www.mdanalysis.org/pages/learning_MDAnalysis/#videos
.. _`Quickstart Guide`:
https://userguide.mdanalysis.org/examples/quickstart.html
.. _`User Guide`: https://userguide.mdanalysis.org
.. _`MDAnalysis API docs`:
https://docs.mdanalysis.org
.. _`Issue Tracker`: https://github.com/mdanalysis/mdanalysis/issues
.. _`user mailing list`:
https://groups.google.com/group/mdnalysis-discussion
.. _`developer guide`:
https://userguide.mdanalysis.org/contributing.html
.. _`developer mailing list`:
https://groups.google.com/group/mdnalysis-devel
.. _`10.1002/jcc.21787`: https://dx.doi.org/10.1002/jcc.21787
.. _`10.25080/Majora-629e541a-00e`: https://doi.org/10.25080/Majora-629e541a-00e
.. _references: https://docs.mdanalysis.org/documentation_pages/references.html
.. |usergroup| image:: https://img.shields.io/badge/Google%20Group-Users-lightgrey.svg
:alt: User Google Group
:target: https://groups.google.com/group/mdnalysis-discussion
.. |developergroup| image:: https://img.shields.io/badge/Google%20Group-Developers-lightgrey.svg
:alt: Developer Google Group
:target: https://groups.google.com/group/mdnalysis-devel
.. |docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg
:alt: Documentation (latest release)
:target: https://docs.mdanalysis.org
.. |devdocs| image:: https://img.shields.io/badge/docs-development-yellow.svg
:alt: Documentation (development version)
:target: https://docs.mdanalysis.org/dev
.. |numfocus| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
:alt: Powered by NumFOCUS
:target: https://www.numfocus.org/
.. |build| image:: https://travis-ci.com/MDAnalysis/mdanalysis.svg?branch=develop
:alt: Build Status
:target: https://travis-ci.com/MDAnalysis/mdanalysis
.. |cov| image:: https://codecov.io/gh/MDAnalysis/mdanalysis/branch/develop/graph/badge.svg
:alt: Coverage Status
:target: https://codecov.io/gh/MDAnalysis/mdanalysis
.. |anaconda| image:: https://anaconda.org/conda-forge/mdanalysis/badges/version.svg
:alt: Anaconda
:target: https://anaconda.org/conda-forge/mdanalysis
.. |mybinder| image:: https://mybinder.org/badge.svg
:alt: My Binder
:target: https://mybinder.org/v2/gh/MDAnalysis/binder-notebook/master
Raw data
{
"_id": null,
"home_page": "https://www.mdanalysis.org",
"name": "MDAnalysis",
"maintainer": "Richard Gowers",
"docs_url": null,
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3,!=3.4.*,<3.9",
"maintainer_email": "mdnalysis-discussion@googlegroups.com",
"keywords": "",
"author": "Naveen Michaud-Agrawal",
"author_email": "naveen.michaudagrawal@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/9e/19/1d32ded1891605facf6faf6e0de4ff6bd33db3f7983d84cfc10074363990/MDAnalysis-1.0.1.tar.gz",
"platform": "",
"description": "|numfocus| |build| |cov| [*]_\n\n|docs| |devdocs| |usergroup| |developergroup| |anaconda| |mybinder|\n\nMDAnalysis_ is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interactions of drugs with proteins to novel materials. It is widely used in the scientific community and is written by scientists for scientists. \n\nIt works with a wide range of popular simulation packages including Gromacs, Amber, NAMD, CHARMM, DL_Poly, HooMD, LAMMPS and many others \u2014 see the lists of supported `trajectory formats`_ and `topology formats`_.\nMDAnalysis also includes widely used analysis algorithms in the `MDAnalysis.analysis`_ module.\n\n.. _numfocus-fiscal-sponsor-attribution:\n\nThe MDAnalysis project uses an `open governance model`_ and is fiscally sponsored by `NumFOCUS`_. Consider making \na `tax-deductible donation`_ to help the project pay for developer time, professional services, travel, workshops, and a variety of other needs.\n\n.. image:: https://www.mdanalysis.org/public/images/numfocus-sponsored-small.png\n :alt: NumFOCUS (Fiscally Sponsored Project)\n :target: https://numfocus.org/project/mdanalysis\n :align: center\n\nThis project is bound by a `Code of Conduct`_.\n\n\nExample analysis script\n=======================\n\n.. code:: python\n\n import MDAnalysis as mda\n\n # Load simulation results with a single line\n u = mda.Universe('topol.tpr','traj.trr')\n\n # Select atoms\n ag = u.select_atoms('name OH')\n\n # Atom data made available as Numpy arrays\n ag.positions\n ag.velocities\n ag.forces\n\n # Iterate through trajectories\n for ts in u.trajectory:\n print(ag.center_of_mass())\n\n\nDocumentation\n=============\n\n**New users** should read the `Quickstart Guide`_ and might want to\nlook at our videos_, in which core developers explain various aspects\nof MDAnalysis.\n\n**All users** should read the `User Guide`_.\n\n**Developers** may also want to refer to the `MDAnalysis API docs`_.\n\nA growing number of **tutorials_** are available that explain how to\nconduct RMSD calculations, structural alignment, distance and contact\nanalysis, and many more.\n\n\nInstallation and availability\n=============================\n\nThe latest release can be **installed via ``pip`` or ``conda``** as\ndescribed in the `Installation Quick Start`_.\n\n**Source code** is hosted in a git repository at\nhttps://github.com/MDAnalysis/mdanalysis and is available under the\nGNU General Public License, version 2 (see the file LICENSE_).\n\n\nContributing\n============\n\nPlease report **bugs** or **enhancement requests** through the `Issue\nTracker`_. Questions can also be asked on the `user mailing list`_.\n\nIf you are a **new developer** who would like to start contributing to\nMDAnalysis get in touch on the `developer mailing list`_. To set up a\ndevelopment environment and run the test suite read the `developer\nguide`_.\n\n\nCitation\n========\n\nWhen using MDAnalysis in published work, please cite the following\ntwo papers:\n\n* R. J. Gowers, M. Linke, J. Barnoud, T. J. E. Reddy,\n M. N. Melo, S. L. Seyler, D. L. Dotson, J. Domanski,\n S. Buchoux, I. M. Kenney, and O. Beckstein. MDAnalysis:\n A Python package for the rapid analysis of molecular\n dynamics simulations. In S. Benthall and S. Rostrup,\n editors, Proceedings of the 15th Python in Science\n Conference, pages 102-109, Austin, TX, 2016. SciPy.\n doi:`10.25080/Majora-629e541a-00e`_ \n\n* N. Michaud-Agrawal, E. J. Denning, T. B. Woolf,\n and O. Beckstein. MDAnalysis: A Toolkit for the Analysis of Molecular\n Dynamics Simulations. *J. Comput. Chem.* **32** (2011), 2319--2327.\n doi:`10.1002/jcc.21787`_\n\nFor citations of included algorithms and sub-modules please see the references_.\n\n\n\n.. Footnotes\n\n.. [*] **build**: Unit testing is for the whole package; **coverage** is\n shown for the core library modules and the analysis modules.\n\n.. _NumFOCUS: https://numfocus.org/\n.. _open governance model: https://www.mdanalysis.org/about/#governance\n.. _tax-deductible donation: https://numfocus.org/donate-to-mdanalysis\n.. _`Code of Conduct`: https://www.mdanalysis.org/pages/conduct/\n.. _trajectory formats: https://docs.mdanalysis.org/documentation_pages/coordinates/init.html#id1\n.. _topology formats: https://docs.mdanalysis.org/documentation_pages/topology/init.html#supported-topology-formats\n.. _MDAnalysis: https://www.mdanalysis.org\n.. _LICENSE:\n https://github.com/MDAnalysis/mdanalysis/blob/master/LICENSE\n.. _`Installation Quick Start`:\n https://www.mdanalysis.org/pages/installation_quick_start/\n.. _`MDAnalysis.analysis`: https://docs.mdanalysis.org/documentation_pages/analysis_modules.html\n.. _`tutorials`: https://userguide.mdanalysis.org/examples/README.html\n.. _`videos`: https://www.mdanalysis.org/pages/learning_MDAnalysis/#videos\n.. _`Quickstart Guide`:\n https://userguide.mdanalysis.org/examples/quickstart.html\n.. _`User Guide`: https://userguide.mdanalysis.org\n.. _`MDAnalysis API docs`:\n https://docs.mdanalysis.org\n.. _`Issue Tracker`: https://github.com/mdanalysis/mdanalysis/issues\n.. _`user mailing list`:\n https://groups.google.com/group/mdnalysis-discussion\n.. _`developer guide`:\n https://userguide.mdanalysis.org/contributing.html\n.. _`developer mailing list`:\n https://groups.google.com/group/mdnalysis-devel\n.. _`10.1002/jcc.21787`: https://dx.doi.org/10.1002/jcc.21787\n.. _`10.25080/Majora-629e541a-00e`: https://doi.org/10.25080/Majora-629e541a-00e\n.. _references: https://docs.mdanalysis.org/documentation_pages/references.html\n\n\n.. |usergroup| image:: https://img.shields.io/badge/Google%20Group-Users-lightgrey.svg\n :alt: User Google Group\n :target: https://groups.google.com/group/mdnalysis-discussion\n\n.. |developergroup| image:: https://img.shields.io/badge/Google%20Group-Developers-lightgrey.svg\n :alt: Developer Google Group\n :target: https://groups.google.com/group/mdnalysis-devel\n\n.. |docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg\n :alt: Documentation (latest release)\n :target: https://docs.mdanalysis.org\n\n.. |devdocs| image:: https://img.shields.io/badge/docs-development-yellow.svg\n :alt: Documentation (development version)\n :target: https://docs.mdanalysis.org/dev\n\n.. |numfocus| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A\n :alt: Powered by NumFOCUS\n :target: https://www.numfocus.org/\n\n.. |build| image:: https://travis-ci.com/MDAnalysis/mdanalysis.svg?branch=develop\n :alt: Build Status\n :target: https://travis-ci.com/MDAnalysis/mdanalysis\n\n.. |cov| image:: https://codecov.io/gh/MDAnalysis/mdanalysis/branch/develop/graph/badge.svg\n :alt: Coverage Status\n :target: https://codecov.io/gh/MDAnalysis/mdanalysis\n\n.. |anaconda| image:: https://anaconda.org/conda-forge/mdanalysis/badges/version.svg\n :alt: Anaconda\n :target: https://anaconda.org/conda-forge/mdanalysis\n\n.. |mybinder| image:: https://mybinder.org/badge.svg\n :alt: My Binder\n :target: https://mybinder.org/v2/gh/MDAnalysis/binder-notebook/master",
"bugtrack_url": null,
"license": "GPL 2",
"summary": "An object-oriented toolkit to analyze molecular dynamics trajectories generated by CHARMM, Gromacs, NAMD, LAMMPS, or Amber.",
"version": "1.0.1",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5d1e08ba6bf5f9806f1f8ad004c3b76d",
"sha256": "dc2cf34391b5eb1733fca1ab14e0de2e381d2d595c95923403f42cb2e39c9dad"
},
"downloads": -1,
"filename": "MDAnalysis-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "5d1e08ba6bf5f9806f1f8ad004c3b76d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3,!=3.4.*,<3.9",
"size": 3768769,
"upload_time": "2021-02-19T18:35:40",
"upload_time_iso_8601": "2021-02-19T18:35:40.530582Z",
"url": "https://files.pythonhosted.org/packages/9e/19/1d32ded1891605facf6faf6e0de4ff6bd33db3f7983d84cfc10074363990/MDAnalysis-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2021-02-19 18:35:40",
"github": false,
"gitlab": false,
"bitbucket": false,
"lcname": "mdanalysis"
}