You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A project (and object) for storing, manipulating, and converting molecular mechanics data.
Documentation
Documentation for Interchange, including examples, a brief user guide, release history, and API docs, is available on the OpenFF website. Example notebooks are rendered online among examples from other projects in the OpenFF ecosysytem docs
How to cite
Please cite Interchange using the Zenodo record of the latest release or the version that was used. The BibTeX reference of the latest release can be found at this link.
Installation
Recent versions of the OpenFF Toolkit (0.11.0+, released August 2022) install Interchange by default through its conda package.
Interchange can also be installed manually via conda (or mamba):
conda install openff-interchange -c conda-forge
Getting started
The Iterchange object serves primarily as a container object for parametrized data. It can currently take in SMIRNOFF or Foyer force fields
and chemical topologies prepared via the OpenFF Toolkit. The resulting object stores parametrized data and provides APIs for export to common formats.
fromopenff.toolkitimportForceField, Moleculefromopenff.unitsimportunitfromopenff.interchangeimportInterchange# Use the OpenFF Toolkit to generate a molecule object from a SMILES patternmolecule=Molecule.from_smiles("CCO")
# Generate a conformer to be used as atomic coordinatesmolecule.generate_conformers(n_conformers=1)
# Convert this molecule to a topologytopology=molecule.to_topology()
# Define periodicity via box vectorstopology.box_vectors=unit.Quantity([4, 4, 4], unit.nanometer)
# Load OpenFF 2.0.0 "Sage"sage=ForceField("openff-2.0.0.offxml")
# Create an Interchange objectout=Interchange.from_smirnoff(force_field=sage, topology=topology)
# Convert the Interchnage object to an OpenMM Systemsystem=out.to_openmm()
# or write to GROMACS filesout.to_gro("out.gro")
out.to_top("out.top")
# or store as JSONjson_blob=out.json()
For more examples specific to Interchange, navigate to the examples/ directory.
Copyright
Copyright (c) 2020, Open Force Field Initiative
License
The source code of Interchange is hosted on GitHub and is available under the MIT license (see the file LICENSE). Some parts inherit from code distributed under other licenses, as detailed in LICENSE-3RD-PARTY.