All Projects → Autodesk → Molecular Design Toolkit

Autodesk / Molecular Design Toolkit

Licence: apache-2.0
Notebook-integrated tools for molecular simulation and visualization

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Molecular Design Toolkit

Awesome Python Chemistry
A curated list of Python packages related to chemistry
Stars: ✭ 410 (+233.33%)
Mutual labels:  simulation, chemistry, molecular-dynamics, quantum-chemistry
Tensormol
Tensorflow + Molecules = TensorMol
Stars: ✭ 226 (+83.74%)
Mutual labels:  simulation, chemistry, molecular-dynamics
hoomd-examples
HOOMD-blue example scripts.
Stars: ✭ 15 (-87.8%)
Mutual labels:  jupyter, simulation, molecular-dynamics
Hande
Open source stochastic quantum chemistry
Stars: ✭ 50 (-59.35%)
Mutual labels:  chemistry, quantum-chemistry
Gaussium
A Quantum Chemistry program written in Python 3 supporting RHF, UHF, TDHF, CIS, MP2, DFT, CCSD and CCSD(T) methods.
Stars: ✭ 36 (-70.73%)
Mutual labels:  chemistry, quantum-chemistry
Geonotebook
A Jupyter notebook extension for geospatial visualization and analysis
Stars: ✭ 1,007 (+718.7%)
Mutual labels:  jupyter, notebook
Xopt
eXternal OPTimizer
Stars: ✭ 5 (-95.93%)
Mutual labels:  chemistry, quantum-chemistry
Nbconflux
nbconflux converts Jupyter Notebooks to Atlassian Confluence pages
Stars: ✭ 82 (-33.33%)
Mutual labels:  jupyter, notebook
Mcmd
Monte Carlo and Molecular Dynamics Simulation Package
Stars: ✭ 52 (-57.72%)
Mutual labels:  chemistry, molecular-dynamics
Qcengine
Quantum chemistry program executor and IO standardizer (QCSchema).
Stars: ✭ 83 (-32.52%)
Mutual labels:  chemistry, quantum-chemistry
Colvars
Collective variables module for molecular simulation and analysis programs
Stars: ✭ 99 (-19.51%)
Mutual labels:  simulation, molecular-dynamics
Sparkmagic
Jupyter magics and kernels for working with remote Spark clusters
Stars: ✭ 954 (+675.61%)
Mutual labels:  jupyter, notebook
Dyalog Jupyter Kernel
A Jupyter kernel for Dyalog APL
Stars: ✭ 26 (-78.86%)
Mutual labels:  jupyter, notebook
Lammps
Public development project of the LAMMPS MD software package
Stars: ✭ 1,019 (+728.46%)
Mutual labels:  simulation, molecular-dynamics
P5 Notebook
A minimal Jupyter Notebook UI for p5.js kernels running in the browser
Stars: ✭ 26 (-78.86%)
Mutual labels:  jupyter, notebook
Notebook
Jupyter Interactive Notebook
Stars: ✭ 8,710 (+6981.3%)
Mutual labels:  jupyter, notebook
Fastai Course 1
Docker environment for fast.ai Deep Learning Course 1 at http://course.fast.ai
Stars: ✭ 98 (-20.33%)
Mutual labels:  jupyter, notebook
Prml
PRML algorithms implemented in Python
Stars: ✭ 10,206 (+8197.56%)
Mutual labels:  jupyter, notebook
Spark R Notebooks
R on Apache Spark (SparkR) tutorials for Big Data analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 109 (-11.38%)
Mutual labels:  jupyter, notebook
Openmm
OpenMM is a toolkit for molecular simulation using high performance GPU code.
Stars: ✭ 791 (+543.09%)
Mutual labels:  simulation, molecular-dynamics

PyPI version github release tag Python versions License Codeship Status for Autodesk/molecular-design-toolkit Coverage Status

Try it now: Binder

Molecular Design Toolkit

Molecular modeling without the pain - a Python library offering integrated simulation, visualization, analysis, and cloud computing.

The toolkit aims to lower the barriers between you and your science by integrating mature, open source simulation packages with a readable abstract API, Jupyter notebook visualization, and native cloud computing.

Get started

MDT requires Docker and Python 2.7. (Python 3.5+ is supported in the development version, and will be available in the stable 0.8 release.)

On the command line, run:

pip install moldesign
python -m moldesign intro

Note: depending on how python is installed on your system, some users may need to install the package as root: sudo pip install moldesign.

The best way to get started is to play with the examples that python -m moldesign intro will pull up. See the documentation for complete API docs, development instructions and other installation scenarios.

Code Example

You'll almost always import the package and its units module:

import moldesign as mdt
from moldesign import units as u

Download a protein from the PDB and visualize it in 3D (in a notebook):

protease = mdt.from_pdb('3AID')
protease.draw()

Create a small molecule and relax its geometry:

mol = mdt.from_name('bipyridine')
mol.set_energy_model(mdt.models.RHF(basis='STO-3G'))
min_trajectory = mol.minimize(nsteps=20)
min_trajectory.draw_orbitals()

For in-depth examples, see the built-in example notebooks (run python -m moldesign intro to launch).

Get help

Contributing

See CONTRIBUTING.md for details. Note that the Notebook Molecular Visualization library and PyCloudComputeCannon are also developed under this project's umbrella.

License

See NOTICES for details about incorporated code.

Copyright 2016 Autodesk Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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].