1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
##############################################################################
# MDTraj: A Python Library for Loading, Saving, and Manipulating
# Molecular Dynamics Trajectories.
# Copyright 2012-2014 Stanford University and the Authors
#
# Authors: Kyle A. Beauchamp
# Contributors: Robert McGibbon, Matthew Harrigan, Carlos Xavier Hernandez
#
# MDTraj is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 2.1
# of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with MDTraj. If not, see <http://www.gnu.org/licenses/>.
##############################################################################
import os
from packaging.version import Version
import pickle
import tempfile
import numpy as np
import pandas as pd
import pytest
import mdtraj as md
from mdtraj.testing import eq
from mdtraj.utils import import_
try:
import openmm.unit as u
from openmm import app
from openmm.version import short_version as openmm_version
HAVE_OPENMM = True
except ImportError:
openmm_version="0"
HAVE_OPENMM = False
needs_openmm = pytest.mark.skipif(not HAVE_OPENMM, reason="needs OpenMM")
@needs_openmm
def test_topology_openmm(get_fn):
topology = md.load(get_fn("1bpi.pdb")).topology
topology_with_bond_order = md.load(get_fn("imatinib.mol2")).topology
# the openmm trajectory doesn't have the distinction
# between resSeq and index, so if they're out of whack
# in the openmm version, that cant be preserved
for top in [topology, topology_with_bond_order]:
for residue in top.residues:
residue.resSeq = residue.index
mm = top.to_openmm()
assert isinstance(mm, app.Topology)
topology2 = md.Topology.from_openmm(mm)
eq(top, topology2)
@needs_openmm
def test_topology_openmm_preserve_chain_id_when_specified(get_fn):
top = md.load(get_fn("custom.pdb")).topology
for chain in top.chains:
assert chain.chain_id is not None
openmm_top = top.to_openmm()
chain = next(openmm_top.chains())
eq(chain.id, "X")
@needs_openmm
def test_topology_openmm_roundtrip_chain_id(get_fn):
top = md.load(get_fn("custom.pdb")).topology
top2 = md.Topology.from_openmm(top.to_openmm())
for chain1, chain2 in zip(top.chains, top2.chains):
eq(chain1.chain_id, "X")
eq(chain2.chain_id, "X")
@needs_openmm
def test_topology_openmm_preserve_chain_id_even_when_empty(get_fn):
top = md.load(get_fn("native.pdb")).topology
for chain in top.chains:
assert chain.chain_id is not None
openmm_top = top.to_openmm()
chain = next(openmm_top.chains())
eq(chain.id, " ")
@needs_openmm
def test_topology_openmm_boxes(get_fn):
traj = md.load(get_fn("1vii_sustiva_water.pdb"))
mmtop = traj.topology.to_openmm(traj=traj)
mmtop.getUnitCellDimensions() / u.nanometer
@needs_openmm
@pytest.mark.skipif(Version(openmm_version) < Version("8.2"), reason="requires openmm >= 8.2")
def test_topology_openmm_formal_charges(get_fn):
"""Test to make sure charges are conserved when converting to/from openmm from PDB"""
app = import_("openmm.app")
# This is a edited 1ply PDB with formal charges added to sodium ions
pdb = app.PDBFile(get_fn("1ply_charge.pdb"))
# Get the formal charges from the OpenMM topology
try:
formal_charges = [atom.formalCharge for atom in pdb.topology.atoms()]
except TypeError:
# OpenMM < 7.4 doesn't have formal charges,
# so we just return (skip the test)
return
# Convert to MDTraj topology
mdtraj_topology = md.Topology.from_openmm(pdb.topology)
# Get the formal charges from the MDTraj topology
mdtraj_formal_charges = [atom.formal_charge for atom in mdtraj_topology.atoms]
# Check that the formal charges are the same
eq(formal_charges, mdtraj_formal_charges)
def normalize_charge(charge):
# Convert None to pandas NA, leave numbers intact
return pd.NA if charge is None else charge
def test_topology_dataframe_formal_charges(get_fn):
"""
Test that formal charges are maintained when converting a topology
to a DataFrame and back. Uses a PDB file with formal charges.
"""
# Load the topology from a PDB file with formal charges.
topology = md.load(get_fn("1ply_charge.pdb")).topology
# Get the original formal charges from the MDTraj topology.
original_formal_charges = [atom.formal_charge for atom in topology.atoms]
normalized_original = [normalize_charge(charge) for charge in original_formal_charges]
# Convert topology to DataFrame and bonds array.
atoms_df, bonds = topology.to_dataframe()
# Convert topology back from the DataFrame.
topology_from_df = md.Topology.from_dataframe(atoms_df, bonds)
# Extract formal charges from the converted topology.
converted_formal_charges = [atom.formal_charge for atom in topology_from_df.atoms]
# Check that formal charges are conserved.
eq(normalized_original, converted_formal_charges)
def test_topology_pandas(get_fn):
topology = md.load(get_fn("native.pdb")).topology
atoms, bonds = topology.to_dataframe()
topology2 = md.Topology.from_dataframe(atoms, bonds)
eq(topology, topology2)
# Make sure default argument of None works, see issue #774
md.Topology.from_dataframe(atoms)
def test_topology_pandas_TIP4PEW(get_fn):
topology = md.load(get_fn("GG-tip4pew.pdb")).topology
atoms, bonds = topology.to_dataframe()
topology2 = md.Topology.from_dataframe(atoms, bonds)
eq(topology, topology2)
def test_topology_pandas_2residues_same_resSeq(get_fn):
with pytest.warns(UserWarning, match="two consecutive residues with same number"):
topology = md.load(get_fn("two_residues_same_resnum.gro")).topology
atoms, bonds = topology.to_dataframe()
topology2 = md.Topology.from_dataframe(atoms, bonds)
eq(topology, topology2)
def test_topology_numbers(get_fn):
topology = md.load(get_fn("1bpi.pdb")).topology
assert len(list(topology.atoms)) == topology.n_atoms
assert len(list(topology.residues)) == topology.n_residues
assert all([topology.atom(i).index == i for i in range(topology.n_atoms)])
def test_topology_unique_elements_bpti(get_fn):
traj = md.load(get_fn("bpti.pdb"))
top, bonds = traj.top.to_dataframe()
atoms = np.unique(["C", "O", "N", "H", "S"])
eq(atoms, np.unique(top.element.values))
def test_chain(get_fn):
top = md.load(get_fn("bpti.pdb")).topology
chain = top.chain(0)
assert chain.n_residues == len(list(chain.residues))
atoms = list(chain.atoms)
assert chain.n_atoms == len(atoms)
for i in range(chain.n_atoms):
assert atoms[i] == chain.atom(i)
def test_residue(get_fn):
top = md.load(get_fn("bpti.pdb")).topology
residue = top.residue(0)
assert len(list(residue.atoms)) == residue.n_atoms
atoms = list(residue.atoms)
for i in range(residue.n_atoms):
assert residue.atom(i) == atoms[i]
def test_segment_id(get_fn):
top = md.load(get_fn("ala_ala_ala.pdb")).topology
assert next(top.residues).segment_id == "AAL", "Segment id is not being assigned correctly for ala_ala_ala.psf"
df = top.to_dataframe()[0]
assert len(df["segmentID"] == "AAL") == len(
df,
), "Segment id is not being assigned correctly to topology data frame ala_ala_ala.psf"
def test_nonconsective_resSeq(get_fn):
t = md.load(get_fn("nonconsecutive_resSeq.pdb"))
assert eq(np.array([r.resSeq for r in t.top.residues]), np.array([1, 3, 5]))
df1 = t.top.to_dataframe()
df2 = md.Topology.from_dataframe(*df1).to_dataframe()
assert eq(df1[0], df2[0])
# round-trip through a PDB load/save loop
fd, fname = tempfile.mkstemp(suffix=".pdb")
os.close(fd)
t.save(fname)
t2 = md.load(fname)
assert eq(df1[0], t2.top.to_dataframe()[0])
os.unlink(fname)
def test_pickle(get_fn):
# test pickling of topology (bug #391)
topology_without_bond_order = md.load(get_fn("bpti.pdb")).topology
topology_with_bond_order = md.load(get_fn("imatinib.mol2")).topology
for top in [topology_with_bond_order, topology_without_bond_order]:
loaded_top = pickle.loads(pickle.dumps(top))
assert loaded_top == top
def test_atoms_by_name(get_fn):
top = md.load(get_fn("bpti.pdb")).topology
atoms = list(top.atoms)
for atom1, atom2 in zip(top.atoms_by_name("CA"), top.chain(0).atoms_by_name("CA")):
assert atom1 == atom2
assert atom1 in atoms
assert atom1.name == "CA"
assert len(list(top.atoms_by_name("CA"))) == sum(1 for _ in atoms if _.name == "CA")
assert top.residue(15).atom("CA") == [a for a in top.residue(15).atoms if a.name == "CA"][0]
with pytest.raises(KeyError):
top.residue(15).atom("sdfsdf")
def test_select_atom_indices(get_fn):
top = md.load(get_fn("native.pdb")).topology
assert eq(top.select_atom_indices("alpha"), np.array([8]))
assert eq(
top.select_atom_indices("minimal"),
np.array([4, 5, 6, 8, 10, 14, 15, 16, 18]),
)
with pytest.raises(ValueError):
top.select_atom_indices("sdfsdf")
@needs_openmm
def test_top_dataframe_openmm_roundtrip(get_fn):
t = md.load(get_fn("2EQQ.pdb"))
top, bonds = t.top.to_dataframe()
t.topology = md.Topology.from_dataframe(top, bonds)
t.top.to_openmm()
def test_n_bonds(get_fn):
t = md.load(get_fn("2EQQ.pdb"))
for atom in t.top.atoms:
if atom.element.symbol == "H":
assert atom.n_bonds == 1
elif atom.element.symbol == "C":
assert atom.n_bonds in [3, 4]
elif atom.element.symbol == "O":
assert atom.n_bonds in [1, 2]
def test_load_unknown_topology(get_fn):
try:
md.load(get_fn("frame0.dcd"), top=get_fn("frame0.dcd"))
except OSError as e:
# we want to make sure there's a nice error message than includes
# a list of the supported topology formats.
assert all(s in str(e) for s in (".pdb", ".psf", ".prmtop"))
else:
assert False # fail
def test_unique_pairs():
n = 10
a = np.arange(n)
b = np.arange(n, n + n)
eq(
md.Topology._unique_pairs(a, a).sort(),
md.Topology._unique_pairs_equal(a).sort(),
)
eq(
md.Topology._unique_pairs(a, b).sort(),
md.Topology._unique_pairs_mutually_exclusive(a, b).sort(),
)
def test_select_pairs(get_fn):
traj = md.load(get_fn("tip3p_300K_1ATM.pdb"))
select_pairs = traj.top.select_pairs
assert len(select_pairs(selection1="name O", selection2="name O")) == 258 * (258 - 1) // 2
assert len(select_pairs(selection1="name H1", selection2="name O")) == 258 * 258
selections = iter(
[
# Equal
("(name O) or (name =~ 'H.*')", "(name O) or (name =~ 'H.*')"),
("all", "all"),
# Exclusive
("name O", "name H1"),
("name H1", "name O"),
# Overlap
(range(traj.n_atoms), "name O"),
("all", "name O"),
],
)
for select1, select2 in selections:
select3, select4 = next(selections)
assert eq(
select_pairs(selection1=select1, selection2=select2).sort(),
select_pairs(selection1=select3, selection2=select4).sort(),
)
def test_to_fasta(get_fn):
t = md.load(get_fn("2EQQ.pdb"))
assert t.topology.to_fasta(0) == "ENFSGGCVAGYMRTPDGRCKPTFYQLIT"
def test_subset(get_fn):
t1 = md.load(get_fn("2EQQ.pdb")).top
t2 = t1.subset([1, 2, 3])
assert t2.n_residues == 1
def test_subset_re_index_residues(get_fn):
t1 = md.load(get_fn("2EQQ.pdb")).top
t2 = t1.subset(t1.select("resid 0 2"))
np.testing.assert_array_equal([0, 1], [rr.index for rr in t2.residues])
def test_molecules(get_fn):
top = md.load(get_fn("4OH9.pdb")).topology
molecules = top.find_molecules()
assert sum(len(mol) for mol in molecules) == top.n_atoms
assert sum(1 for mol in molecules if len(mol) > 1) == 2 # All but two molecules are water
def test_copy_and_hash(get_fn):
t = md.load(get_fn("traj.h5"))
t1 = t.topology
t2 = t.topology.copy()
assert t1 == t2
assert hash(tuple(t1._chains)) == hash(tuple(t2._chains))
assert hash(tuple(t1._atoms)) == hash(tuple(t2._atoms))
assert hash(tuple(t1._bonds)) == hash(tuple(t2._bonds))
assert hash(tuple(t1._residues)) == hash(tuple(t2._residues))
assert hash(t1) == hash(t2)
@pytest.mark.parametrize("filename", ["traj.h5", "1ply_charge.pdb"])
def test_copy(get_fn, filename):
t = md.load(get_fn(filename))
t1 = t.topology
t2 = t.topology.copy()
assert t1 == t2
# hash for chains checks only index, but chains have
# index and chain number, so this isn't as much of a concern
assert hash(tuple(t1._chains)) == hash(tuple(t2._chains))
# bond hash checks atom IDs, type and order
assert hash(tuple(t1._bonds)) == hash(tuple(t2._bonds))
# Check that atoms are the same
# because hash isn't complete
# see issue #2039.
# hash should be sufficient after this is resolved
for x, y in zip(t1._atoms, t2._atoms):
assert x == y, f"Atoms {x} and {y} do not match."
def test_topology_sliced_residue_indices(get_fn):
# https://github.com/mdtraj/mdtraj/issues/1585
full = md.load(get_fn("1bpi.pdb"))
residues = full.top.select("resid 1 to 10")
sliced = full.atom_slice(residues)
idx = [res.index for res in sliced.top.residues][-1]
assert idx == sliced.top.n_residues - 1
# Now see if this works
_ = sliced.topology.residue(idx)
def test_topology_join(get_fn):
top_1 = md.load(get_fn("2EQQ.pdb")).topology
top_2 = md.load(get_fn("4OH9.pdb")).topology
out_topology = top_1.join(top_2)
eq(out_topology.n_atoms, top_1.n_atoms + top_2.n_atoms)
eq(out_topology.n_residues, top_1.n_residues + top_2.n_residues)
eq(top_1.atom(0).residue.name, out_topology.atom(0).residue.name)
eq(top_2.atom(-1).residue.name, out_topology.atom(-1).residue.name)
eq(top_1.atom(0).element, out_topology.atom(0).element)
eq(top_2.atom(-1).element, out_topology.atom(-1).element)
def test_topology_join_keep_resSeq(get_fn):
top_1 = md.load(get_fn("2EQQ.pdb")).topology
top_2 = md.load(get_fn("4OH9.pdb")).topology
out_topology_keepId_True = top_1.join(top_2, keep_resSeq=True)
out_topology_keepId_False = top_1.join(top_2, keep_resSeq=False)
out_resSeq_keepId_True = [residue.resSeq for residue in out_topology_keepId_True.residues]
out_resSeq_keepId_False = [residue.resSeq for residue in out_topology_keepId_False.residues]
expected_resSeq_keepId_True = [residue.resSeq for residue in top_1.residues] + [
residue.resSeq for residue in top_2.residues
]
expected_resSeq_keepId_False = list(range(1, len(expected_resSeq_keepId_True) + 1))
eq(out_resSeq_keepId_True, expected_resSeq_keepId_True)
eq(out_resSeq_keepId_False, expected_resSeq_keepId_False)
def test_topology_join_formal_charge():
top1 = md.Topology()
c1 = top1.add_chain()
r1 = top1.add_residue("LIG", c1, 0)
top1.add_atom("C1", md.element.Element.getBySymbol("C"), r1, formal_charge=1)
top2 = md.Topology()
c2 = top2.add_chain()
r2 = top2.add_residue("LIG", c2, 0)
top2.add_atom("C2", md.element.Element.getBySymbol("C"), r2, formal_charge=-1)
joined = top1.join(top2)
charges = [atom.formal_charge for atom in joined.atoms]
assert charges == [1, -1], f"Expected [1, -1] formal charges, got {charges}"
def test_delete_atom_by_index(get_fn):
"""
REMARK *
REMARK DATE: 8/ 5/ 9 14:44:19 CREATED BY USER: mjw
ATOM 1 N ALA 1 0.024 -0.103 -0.101 1.00 0.00 AAL
ATOM 2 HT1 ALA 1 0.027 -1.132 -0.239 1.00 0.00 AAL
ATOM 3 HT2 ALA 1 -0.805 0.163 0.471 1.00 0.00 AAL
ATOM 4 HT3 ALA 1 -0.059 0.384 -1.019 1.00 0.00 AAL
ATOM 5 CA ALA 1 1.247 0.375 0.636 1.00 0.00 AAL
...
"""
index = 0
top = md.load(get_fn("ala_ala_ala.pdb")).topology
n_bonds_original = top.n_bonds
n_atoms_original = top.n_atoms
atom_to_remove = top._atoms[index]
top.delete_atom_by_index(index)
assert top.n_atoms == n_atoms_original - 1
assert top.n_bonds == n_bonds_original - 4
assert all([atom_to_remove not in bond for bond in top.bonds])
assert eq(list(range(top.n_atoms)), [atom.index for atom in top.atoms])
|