All Projects → MDAnalysis → Mdanalysis

MDAnalysis / Mdanalysis

Licence: gpl-2.0
MDAnalysis is a Python library to analyze molecular dynamics trajectories.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mdanalysis

Gromacswrapper
GromacsWrapper is a python package that wraps system calls to Gromacs tools into thin classes. This allows for fairly seamless integration of the gromacs tools (v4.6.x, v5.x, 2016.x, 2018.x, 2019.x, all with the same Python code) into python scripts.
Stars: ✭ 108 (-81.66%)
Mutual labels:  science, molecular-dynamics
Pydhamed
Dynamic Histogram Analysis To Determine Free Energies and Rates from Biased Simulations
Stars: ✭ 17 (-97.11%)
Mutual labels:  science, molecular-dynamics
Freud
Powerful, efficient particle trajectory analysis in scientific Python.
Stars: ✭ 118 (-79.97%)
Mutual labels:  science, molecular-dynamics
Alchemlyb
the simple alchemistry library
Stars: ✭ 52 (-91.17%)
Mutual labels:  science, molecular-dynamics
senpai
Molecular dynamics simulation software
Stars: ✭ 124 (-78.95%)
Mutual labels:  science, molecular-dynamics
Cbioportal
cBioPortal for Cancer Genomics
Stars: ✭ 362 (-38.54%)
Mutual labels:  science
Poliastro
poliastro - 🚀 Astrodynamics in Python
Stars: ✭ 462 (-21.56%)
Mutual labels:  science
Pandoc Scholar
Create beautiful and semantically meaningful articles with pandoc.
Stars: ✭ 342 (-41.94%)
Mutual labels:  science
Plasmapy
An open source Python package for plasma science that is under development
Stars: ✭ 334 (-43.29%)
Mutual labels:  science
Sciencefair
The futuristic, fabulous and free desktop app for working with scientific literature 🔬 📖
Stars: ✭ 561 (-4.75%)
Mutual labels:  science
Science Journal Ios
Use the sensors in your mobile devices to perform science experiments. Science doesn’t just happen in the classroom or lab—tools like Science Journal let you see how the world works with just your phone.
Stars: ✭ 531 (-9.85%)
Mutual labels:  science
Librmath.js
Javascript Pure Implementation of Statistical R "core" numerical libRmath.so
Stars: ✭ 425 (-27.84%)
Mutual labels:  science
Drwatson.jl
The perfect sidekick to your scientific inquiries
Stars: ✭ 361 (-38.71%)
Mutual labels:  science
Deta parser
快速中文分词分析word segmentation
Stars: ✭ 476 (-19.19%)
Mutual labels:  science
Plantcv
Plant image analysis using OpenCV
Stars: ✭ 352 (-40.24%)
Mutual labels:  science
Brian2
Brian is a free, open source simulator for spiking neural networks.
Stars: ✭ 533 (-9.51%)
Mutual labels:  science
Awesome Sentinel
curated list of awesome tools, tutorials and APIs for Copernicus Sentinel satellite data
Stars: ✭ 335 (-43.12%)
Mutual labels:  science
Recipy
Effortless method to record provenance in Python
Stars: ✭ 418 (-29.03%)
Mutual labels:  science
Sklearn Classification
Data Science Notebook on a Classification Task, using sklearn and Tensorflow.
Stars: ✭ 518 (-12.05%)
Mutual labels:  science
Awesome Python Chemistry
A curated list of Python packages related to chemistry
Stars: ✭ 410 (-30.39%)
Mutual labels:  molecular-dynamics

================================ MDAnalysis Repository README

|numfocus| |build| |travis| |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://github.com/MDAnalysis/mdanalysis/actions/workflows/gh-ci.yaml/badge.svg :alt: Github Actions Build Status :target: https://github.com/MDAnalysis/mdanalysis/actions/workflows/gh-ci.yaml

.. |travis| image:: https://img.shields.io/travis/MDAnalysis/mdanalysis/develop?label=Travis%20CI :alt: Travis CI 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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].