Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assorted cleanup and installation standardization #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions charmm-gui-gmx/charmm-gui-gmx.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,36 @@
"while the MOL2 file serves as a prototype for constructing an `mb.Compound`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Install requirements"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import mbuild as mb"
"!conda install --file requirements.txt --yes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If `gmx` (the `GROMACS` executable) is not found, install it via `conda`."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!if ! [ -x \"$(command -v gmx)\" ]; then conda install -c bioconda gromacs; fi"
]
},
{
Expand All @@ -56,6 +79,8 @@
"metadata": {},
"outputs": [],
"source": [
"import mbuild as mb\n",
"\n",
"class charmm_ethane(mb.Compound):\n",
" def __init__(self):\n",
" super(charmm_ethane, self).__init__()\n",
Expand Down Expand Up @@ -257,7 +282,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.6"
}
},
"nbformat": 4,
Expand Down
3 changes: 3 additions & 0 deletions charmm-gui-gmx/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mbuild
mdtraj
matplotlib
6 changes: 6 additions & 0 deletions smirnoff_omm/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mbuild
foyer
parmed
openforcefield<0.6
openmm
mdtraj
Loading