All Projects → markovmodel → pyemma_tutorials

markovmodel / pyemma_tutorials

Licence: CC-BY-4.0 license
How to analyze molecular dynamics data with PyEMMA

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
TeX
3793 projects
shell
77523 projects

Projects that are alternatives of or similar to pyemma tutorials

Pyemma
🚂 Python API for Emma's Markov Model Algorithms 🚂
Stars: ✭ 200 (+308.16%)
Mutual labels:  analysis, molecular-dynamics
Msmbuilder
🏗 Statistical models for biomolecular dynamics 🏗
Stars: ✭ 118 (+140.82%)
Mutual labels:  analysis, molecular-dynamics
msmtools
Tools for estimating and analyzing Markov state models
Stars: ✭ 31 (-36.73%)
Mutual labels:  markov-model, analysis
Freud
Powerful, efficient particle trajectory analysis in scientific Python.
Stars: ✭ 118 (+140.82%)
Mutual labels:  analysis, molecular-dynamics
covid
MolSSI SARS-CoV-2 Biomolecular Simulation Data and Algorithm Store
Stars: ✭ 24 (-51.02%)
Mutual labels:  molecular-dynamics, md-simulations
ggshakeR
An analysis and visualization R package that works with publicly available soccer data
Stars: ✭ 69 (+40.82%)
Mutual labels:  analysis
SvelteScaling
Does Svelte scale?
Stars: ✭ 21 (-57.14%)
Mutual labels:  analysis
pingnoo
An open-source cross-platform traceroute/ping analyser.
Stars: ✭ 149 (+204.08%)
Mutual labels:  analysis
PHAT
Pathogen-Host Analysis Tool - A modern Next-Generation Sequencing (NGS) analysis platform
Stars: ✭ 17 (-65.31%)
Mutual labels:  analysis
pointcloud-processing
A point cloud visualisation and analysis library for Processing.
Stars: ✭ 20 (-59.18%)
Mutual labels:  analysis
RAnalysisSkeleton
Files and settings commonly used in analysis projects with R
Stars: ✭ 15 (-69.39%)
Mutual labels:  analysis
fornalder
Visualize long-term trends in collections of Git repositories.
Stars: ✭ 80 (+63.27%)
Mutual labels:  analysis
MixingBear
Package for automatic beat-mixing of music files in Python 🐻🎚
Stars: ✭ 73 (+48.98%)
Mutual labels:  analysis
root pandas
A Python module for conveniently loading/saving ROOT files as pandas DataFrames
Stars: ✭ 108 (+120.41%)
Mutual labels:  analysis
RXMD
RXMD : Linear-Scaling Parallel Reactive Molecular Dynamics Simulation Engine
Stars: ✭ 13 (-73.47%)
Mutual labels:  molecular-dynamics
liground
A free, open-source and modern Chess Variant Analysis GUI for the 21st century
Stars: ✭ 41 (-16.33%)
Mutual labels:  analysis
pytraj
Python interface of cpptraj
Stars: ✭ 106 (+116.33%)
Mutual labels:  molecular-dynamics
SqlServer.Rules
SQL Server static code analysis rules for SSDT database projects
Stars: ✭ 20 (-59.18%)
Mutual labels:  analysis
reactorch
A Differentiable Reacting Flow Simulation Package in PyTorch
Stars: ✭ 24 (-51.02%)
Mutual labels:  kinetics
cis
Home of the Community Intercomparison Suite.
Stars: ✭ 30 (-38.78%)
Mutual labels:  analysis

Introduction to Markov state modeling with the PyEMMA software

CircleCI Binder CCA Conda Conda (channel only)

This work is licensed under a Creative Commons Attribution 4.0 International License.

PyEMMA (EMMA = Emma's Markov Model Algorithms) is an open source Python/C package for analysis of extensive molecular dynamics (MD) simulations.

Content

The first notebook 📓 in this tutorial guides through the basic analysis workflow using real MD data of a pentapeptide:

We keep the details minimal throughout the showcase but point to the more specialized notebooks which allow you to go in-depth on selected topics.

In detail, the remaining eight notebooks revisit all aspects shown in the showcase, provide additional details and variants, and contain exercises (and solutions) to self-check your learning progress:

  1. Data-I/O and featurization 📓
  2. Dimension reduction and discretization 📓
  3. MSM estimation and validation 📓
  4. MSM analysis 📓
  5. PCCA and TPT analysis 📓
  6. Expectations and observables 📓
  7. Hidden Markov state models (HMMs) 📓
  8. Common problems & bad data situations 📓

Please note that this is a work in progress and we value any kind of feedback that helps us improving this tutorial.

Installation

We recommended to install the PyEMMA tutorials with conda. The following command will create a new environment that comes with all the dependencies of the tutorial.

If you do not have conda, please follow the instructions here:

https://conda.io/miniconda.html

Installing the tutorials as a package

After installing miniconda, you can install the tutorial either via

conda create -n pyemma_tutorials -c conda-forge pyemma_tutorials

... or you can also install the tutorial in an existing environment by

conda install -c conda-forge pyemma_tutorials

If you intend to install with pip, for which can not give any support, you feel free to run:

pip install git+https://github.com/markovmodel/pyemma_tutorials

Manual installation

If you wish to install the tutorial manually, you will need the following packages (including all their dependencies):

  • pyemma
  • mdshare
  • nglview
  • nbexamples
  • jupyter_contrib_nbextensions

This can be done, for example, with conda:

conda install -c conda-forge pyemma mdshare nglview nbexamples jupyter_contrib_nbextensions

After installing jupyter_contrib_nbextensions, you need to activate the toc2 and exercise2 extensions:

jupyter nbextension enable toc2/main
jupyter nbextension enable exercise2/main

Now all remains is to clone the repository to get the tutorial notebooks:

git clone https://github.com/markovmodel/pyemma_tutorials.git

Usage

Now we have a fresh conda environment containing the notebooks and the software to run them. We can now just activate the environment and run the notebook server by invoking:

conda activate pyemma_tutorials  # skip this, if you have installed in your root environment or used pip to install.
pyemma_tutorials

The last command will start the notebook server and your browser should pop up pointing to a list of notebooks. You can choose either to preview or to create your own copy of the notebook. The latter will create a copy of the chosen notebook in your home directory, so your changes will not be lost after shutting down the notebook server.

If you have a manual installation, move to the repository's notebook directory...

cd path_to_pyemma_tutorials/notebooks

... and start the notebook server there:

jupyter notebook

Deinstallation

To uninstall you can remove the whole environment which will also uninstall the contained software again:

conda env remove -n pyemma_tutorials

or if you have installed the package directly

conda remove pyemma_tutorials
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].