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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
|
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 fileencoding=utf-8
#
# MDAnalysis --- https://www.mdanalysis.org
# Copyright (c) 2006-2017 The MDAnalysis Development Team and contributors
# (see the file AUTHORS for the full list of names)
#
# Released under the Lesser GNU Public Licence, v2.1 or any higher version
#
# Please cite your use of MDAnalysis in published work:
#
# R. J. Gowers, M. Linke, J. Barnoud, T. J. E. Reddy, M. N. Melo, S. L. Seyler,
# D. L. Dotson, J. Domanski, S. Buchoux, I. M. Kenney, and O. Beckstein.
# MDAnalysis: A Python package for the rapid analysis of molecular dynamics
# simulations. In S. Benthall and S. Rostrup editors, Proceedings of the 15th
# Python in Science Conference, pages 102-109, Austin, TX, 2016. SciPy.
# doi: 10.25080/majora-629e541a-00e
#
# N. Michaud-Agrawal, E. J. Denning, T. B. Woolf, and O. Beckstein.
# MDAnalysis: A Toolkit for the Analysis of Molecular Dynamics Simulations.
# J. Comput. Chem. 32 (2011), 2319--2327, doi:10.1002/jcc.21787
#
import os
from pathlib import Path
import numpy as np
import MDAnalysis as mda
from MDAnalysis.coordinates.DCD import DCDReader
from numpy.testing import (
assert_equal,
assert_array_equal,
assert_almost_equal,
assert_array_almost_equal,
assert_allclose,
)
from MDAnalysisTests.datafiles import (
DCD,
PSF,
DCD_empty,
PRMncdf,
NCDF,
COORDINATES_TOPOLOGY,
COORDINATES_DCD,
PSF_TRICLINIC,
DCD_TRICLINIC,
PSF_NAMD_TRICLINIC,
DCD_NAMD_TRICLINIC,
PSF_NAMD_GBIS,
DCD_NAMD_GBIS,
PDB_closed,
)
from MDAnalysisTests.coordinates.base import (
MultiframeReaderTest,
BaseReference,
BaseWriterTest,
)
import pytest
class DCDReference(BaseReference):
def __init__(self):
super(DCDReference, self).__init__()
self.trajectory = COORDINATES_DCD
self.topology = COORDINATES_TOPOLOGY
self.reader = mda.coordinates.DCD.DCDReader
self.writer = mda.coordinates.DCD.DCDWriter
self.ext = "xtc"
self.prec = 3
self.changing_dimensions = True
class TestDCDReader(MultiframeReaderTest):
@staticmethod
@pytest.fixture()
def ref():
return DCDReference()
def test_empty_dcd(self):
with pytest.raises(IOError):
mda.Universe(PSF, DCD_empty)
def test_with_statement(self):
try:
with DCDReader(DCD) as trj:
N = trj.n_frames
frames = [ts.frame for ts in trj]
except:
raise AssertionError("with_statement not working for DCDReader")
assert_equal(
N,
98,
err_msg="with_statement: DCDReader reads wrong number of frames",
)
assert_array_equal(
frames,
np.arange(0, N),
err_msg="with_statement: DCDReader does not read all frames",
)
def test_set_time(self):
u = mda.Universe(PSF, DCD)
assert_almost_equal(u.trajectory.time, 1.0, decimal=5)
@pytest.mark.parametrize("fstart", (0, 1, 2, 37, None))
def test_write_istart(universe_dcd, tmpdir, fstart):
outfile = str(tmpdir.join("test.dcd"))
nsavc = universe_dcd.trajectory._file.header["nsavc"]
istart = fstart * nsavc if fstart is not None else None
with mda.Writer(
outfile, universe_dcd.atoms.n_atoms, nsavc=nsavc, istart=istart
) as w:
for ts in universe_dcd.trajectory:
w.write(universe_dcd.atoms)
u = mda.Universe(PSF, outfile)
assert_almost_equal(
u.trajectory._file.header["istart"],
istart if istart is not None else u.trajectory._file.header["nsavc"],
)
# issue #1819
times = [ts.time for ts in u.trajectory]
fstart = fstart if fstart is not None else 1
ref_times = (
np.arange(universe_dcd.trajectory.n_frames) + fstart
) * universe_dcd.trajectory.dt
assert_almost_equal(
times,
ref_times,
decimal=5,
err_msg="Times not identical after setting istart={}".format(istart),
)
class TestDCDWriter(BaseWriterTest):
@staticmethod
@pytest.fixture()
def ref():
return DCDReference()
def test_write_random_unitcell(tmpdir):
testname = str(tmpdir.join("test.dcd"))
rstate = np.random.RandomState(1178083)
random_unitcells = rstate.uniform(low=5, high=120, size=(98, 6)).astype(
np.float64
)
u = mda.Universe(PSF, DCD)
with mda.Writer(testname, n_atoms=u.atoms.n_atoms) as w:
for index, ts in enumerate(u.trajectory):
u.atoms.dimensions = random_unitcells[index]
w.write(u.atoms)
u2 = mda.Universe(PSF, testname)
for index, ts in enumerate(u2.trajectory):
assert_allclose(
u2.trajectory.dimensions,
random_unitcells[index],
rtol=1e-5,
)
def test_empty_dimension_warning(tmpdir):
u = mda.Universe(PDB_closed)
testname = str(tmpdir.join("test.dcd"))
with mda.Writer(testname, n_atoms=u.atoms.n_atoms) as w:
msg = "zeroed unitcell will be written"
with pytest.warns(UserWarning, match=msg):
w.write(u.atoms)
################
# Legacy tests #
################
@pytest.fixture(scope="module")
def universe_dcd():
return mda.Universe(PSF, DCD)
def test_rewind(universe_dcd):
universe_dcd.trajectory.rewind()
assert universe_dcd.trajectory.ts.frame == 0
def test_next(universe_dcd):
universe_dcd.trajectory.rewind()
universe_dcd.trajectory.next()
assert universe_dcd.trajectory.ts.frame == 1
def test_jump_last_frame(universe_dcd):
universe_dcd.trajectory[-1]
assert universe_dcd.trajectory.ts.frame == 97
@pytest.mark.parametrize("start, stop, step", ((5, 17, 3), (20, 5, -1)))
def test_slice(universe_dcd, start, stop, step):
frames = [ts.frame for ts in universe_dcd.trajectory[start:stop:step]]
assert_array_equal(frames, np.arange(start, stop, step))
@pytest.mark.parametrize("array_like", [list, np.array])
def test_array_like(universe_dcd, array_like):
ar = array_like([0, 3, 4, 5])
frames = [ts.frame for ts in universe_dcd.trajectory[ar]]
assert_array_equal(frames, ar)
@pytest.mark.parametrize(
"indices", ([0, 4, 2, 3, 0, 1], [0, 0, 1, 1, 2, 1, 1])
)
def test_list_indices(universe_dcd, indices):
frames = [ts.frame for ts in universe_dcd.trajectory[indices]]
assert_array_equal(frames, indices)
@pytest.mark.parametrize(
"slice, length",
[
([None, None, None], 98),
([0, None, None], 98),
([None, 98, None], 98),
([None, None, 1], 98),
([None, None, -1], 98),
([2, 6, 2], 2),
([0, 10, None], 10),
([2, 10, None], 8),
([0, 1, 1], 1),
([1, 1, 1], 0),
([1, 2, 1], 1),
([1, 2, 2], 1),
([1, 4, 2], 2),
([1, 4, 4], 1),
([0, 5, 5], 1),
([3, 5, 1], 2),
([4, 0, -1], 4),
([5, 0, -2], 3),
([5, 0, -4], 2),
],
)
def test_timeseries_slices(slice, length, universe_dcd):
start, stop, step = slice
allframes = universe_dcd.trajectory.timeseries(order="fac")
xyz = universe_dcd.trajectory.timeseries(
start=start, stop=stop, step=step, order="fac"
)
assert len(xyz) == length
assert_array_almost_equal(xyz, allframes[start:stop:step])
@pytest.mark.parametrize(
"order, shape",
(
("fac", (98, 3341, 3)),
("fca", (98, 3, 3341)),
("afc", (3341, 98, 3)),
("acf", (3341, 3, 98)),
("caf", (3, 3341, 98)),
("cfa", (3, 98, 3341)),
),
)
def test_timeseries_order(order, shape, universe_dcd):
x = universe_dcd.trajectory.timeseries(order=order)
assert x.shape == shape
@pytest.mark.parametrize(
"indices", [[1, 2, 3, 4], [5, 10, 15, 19], [9, 4, 2, 0, 50]]
)
def test_timeseries_atomindices(indices, universe_dcd):
allframes = universe_dcd.trajectory.timeseries(order="afc")
asel = universe_dcd.atoms[indices]
xyz = universe_dcd.trajectory.timeseries(asel=asel, order="afc")
assert len(xyz) == len(indices)
assert_array_almost_equal(xyz, allframes[indices])
def test_reader_set_dt():
dt = 100
frame = 3
u = mda.Universe(PSF, DCD, dt=dt)
dcdheader = u.trajectory._file.header
fstart = dcdheader["istart"] / dcdheader["nsavc"]
assert_almost_equal(
u.trajectory[frame].time,
(frame + fstart) * dt,
err_msg="setting time step dt={0} failed: "
"actually used dt={1}".format(dt, u.trajectory._ts_kwargs["dt"]),
)
assert_almost_equal(
u.trajectory.dt, dt, err_msg="trajectory.dt does not match set dt"
)
def test_writer_dt(tmpdir):
dt = 5.0 # set time step to 5 ps for the written trajectory
universe_dcd = mda.Universe(PSF, DCD)
t = universe_dcd.trajectory
outfile = str(tmpdir.join("test.dcd"))
# use istart=None explicitly so that dcd start with time 1*dt
# (DCD will set istart = nsavc)
with mda.Writer(outfile, n_atoms=t.n_atoms, dt=dt, istart=None) as W:
for ts in universe_dcd.trajectory:
W.write(universe_dcd.atoms)
uw = mda.Universe(PSF, outfile)
# check that we actually changed dt
assert not uw.trajectory.dt == pytest.approx(t.dt)
assert_almost_equal(
uw.trajectory.totaltime,
(uw.trajectory.n_frames - 1) * dt,
decimal=4,
err_msg="Total time mismatch for DCD",
)
times = np.array([uw.trajectory.time for ts in uw.trajectory])
frames = np.arange(1, uw.trajectory.n_frames + 1) # traj starts at 1*dt
assert_array_almost_equal(
times,
frames * dt,
decimal=4,
err_msg="Times mismatch for DCD",
)
@pytest.mark.parametrize("variable, default", (("istart", 0), ("nsavc", 1)))
def test_DCDWriter_default(tmpdir, variable, default):
outfile = str(tmpdir.join("test.dcd"))
with mda.Writer(outfile, n_atoms=10) as W:
pass # just write empty trajectory with header
# need to read because header might only be complete after close
with mda.lib.formats.libdcd.DCDFile(outfile) as DCD:
header = DCD.header
assert header[variable] == default
@pytest.mark.parametrize("ext, decimal", (("dcd", 5), ("xtc", 2)))
def test_other_writer(universe_dcd, tmpdir, ext, decimal):
t = universe_dcd.trajectory
outfile = str(tmpdir.join("test.{}".format(ext)))
with t.OtherWriter(outfile) as W:
for ts in universe_dcd.trajectory:
W.write(universe_dcd)
uw = mda.Universe(PSF, outfile)
# check that the coordinates are identical for each time step
for orig_ts, written_ts in zip(universe_dcd.trajectory, uw.trajectory):
assert_array_almost_equal(
written_ts.positions,
orig_ts.positions,
decimal,
err_msg="coordinate mismatch between "
"original and written trajectory at "
"frame {} (orig) vs {} (written)".format(
orig_ts.frame, written_ts.frame
),
)
def test_single_frame(universe_dcd, tmpdir):
u = universe_dcd
outfile = str(tmpdir.join("test.dcd"))
with mda.Writer(outfile, u.atoms.n_atoms) as W:
W.write(u.atoms)
w = mda.Universe(PSF, outfile)
assert w.trajectory.n_frames == 1
assert_almost_equal(
w.atoms.positions,
u.atoms.positions,
3,
err_msg="coordinates do not match",
)
def test_write_no_natoms():
with pytest.raises(ValueError):
mda.Writer("foobar.dcd")
def test_writer_trajectory_no_natoms(tmpdir, universe_dcd):
with tmpdir.as_cwd():
universe_dcd.trajectory.Writer("foo.dcd")
class RefCHARMMtriclinicDCD(object):
topology = PSF_TRICLINIC
trajectory = DCD_TRICLINIC
# time(ps) A B C alpha beta gamma (length in Angstrome, angles in degrees)
# dcd starts at t = 1ps
ref_dimensions = np.array(
[
[1.0, 35.44604, 35.06156, 34.1585, 91.32802, 61.73521, 44.40703],
[2.0, 34.65957, 34.22689, 33.09897, 90.56206, 61.79192, 44.14549],
[3.0, 34.52772, 34.66422, 33.53881, 90.55859, 63.11228, 40.14044],
[4.0, 34.43749, 33.38432, 34.02133, 88.82457, 64.98057, 36.77397],
[5.0, 33.73129, 32.47752, 34.18961, 89.88102, 65.89032, 36.10921],
[6.0, 33.78703, 31.90317, 34.98833, 90.03092, 66.12877, 35.07141],
[7.0, 33.24708, 31.18271, 34.9654, 93.11122, 68.17743, 35.73643],
[8.0, 32.92599, 30.31393, 34.99197, 93.89051, 69.3799, 33.48945],
[9.0, 32.15295, 30.43056, 34.96157, 96.01416, 71.50115, 32.56111],
[10.0, 31.99748, 30.21518, 35.24292, 95.85821, 71.08429, 31.85939],
]
)
class RefNAMDtriclinicDCD(object):
topology = PSF_NAMD_TRICLINIC
trajectory = DCD_NAMD_TRICLINIC
# vmd topology trajectory
# molinfo 0 get {a b c alpha beta gamma}
# time(ps) A B C alpha beta gamma (length in Angstrome, angles in degrees)
ref_dimensions = np.array(
[
[
1.0,
38.426594,
38.393101,
44.759800,
90.000000,
90.000000,
60.028915,
],
]
)
@pytest.mark.parametrize("ref", (RefCHARMMtriclinicDCD, RefNAMDtriclinicDCD))
def test_read_unitcell_triclinic(ref):
u = mda.Universe(ref.topology, ref.trajectory)
for ts, box in zip(u.trajectory, ref.ref_dimensions[:, 1:]):
assert_array_almost_equal(
ts.dimensions,
box,
4,
err_msg="box dimensions A,B,C,alpha,"
"beta,gamma not identical at frame "
"{}".format(ts.frame),
)
@pytest.mark.parametrize("ref", (RefCHARMMtriclinicDCD, RefNAMDtriclinicDCD))
def test_write_unitcell_triclinic(ref, tmpdir):
u = mda.Universe(ref.topology, ref.trajectory)
outfile = "triclinic.dcd"
with tmpdir.as_cwd():
with u.trajectory.OtherWriter(outfile) as w:
for ts in u.trajectory:
w.write(u)
w = mda.Universe(ref.topology, outfile)
for ts_orig, ts_copy in zip(u.trajectory, w.trajectory):
assert_almost_equal(
ts_orig.dimensions,
ts_copy.dimensions,
4,
err_msg="DCD->DCD: unit cell dimensions wrong "
"at frame {0}".format(ts_orig.frame),
)
@pytest.fixture(scope="module")
def ncdf2dcd(tmpdir_factory):
pytest.importorskip("netCDF4")
testfile = tmpdir_factory.mktemp("dcd").join("ncdf2dcd.dcd")
testfile = str(testfile)
ncdf = mda.Universe(PRMncdf, NCDF)
with mda.Writer(testfile, n_atoms=ncdf.atoms.n_atoms) as w:
for ts in ncdf.trajectory:
w.write(ncdf)
return ncdf, mda.Universe(PRMncdf, testfile)
def test_ncdf2dcd_unitcell(ncdf2dcd):
ncdf, dcd = ncdf2dcd
for ts_ncdf, ts_dcd in zip(ncdf.trajectory, dcd.trajectory):
assert_almost_equal(ts_ncdf.dimensions, ts_dcd.dimensions, 3)
def test_ncdf2dcd_coords(ncdf2dcd):
ncdf, dcd = ncdf2dcd
for ts_ncdf, ts_dcd in zip(ncdf.trajectory, dcd.trajectory):
assert_almost_equal(ts_ncdf.positions, ts_dcd.positions, 3)
@pytest.fixture(
params=[
(PSF, DCD),
(PSF_TRICLINIC, DCD_TRICLINIC),
(PSF_NAMD_TRICLINIC, DCD_NAMD_TRICLINIC),
(PSF_NAMD_GBIS, DCD_NAMD_GBIS),
]
)
def universe(request):
psf, dcd = request.param
yield mda.Universe(psf, dcd)
def test_ts_time(universe):
# issue #1819
u = universe
header = u.trajectory._file.header
ref_times = [
(ts.frame + header["istart"] / header["nsavc"]) * ts.dt
for ts in u.trajectory
]
times = [ts.time for ts in u.trajectory]
assert_almost_equal(times, ref_times, decimal=5)
def test_pathlib():
# regression test for DCD path of
# gh-2497
top = Path(PSF)
traj = Path(DCD)
u = mda.Universe(top, traj)
# we really only care that pathlib
# object handling worked
assert u.atoms.n_atoms == 3341
@pytest.fixture
def large_dcdfile(tmpdir):
# creates a >2Gb DCD file
fsize = 3.8 # mb
nreps_reqs = int(2100 // fsize) # times to duplicate traj to hit 2.1Gb
newf = str(tmpdir / "jabba.dcd")
u = mda.Universe(PSF, DCD)
with mda.Writer(newf, n_atoms=len(u.atoms)) as w:
for _ in range(nreps_reqs):
for ts in u.trajectory:
w.write(u.atoms)
yield newf, nreps_reqs
@pytest.mark.skipif(
not os.environ.get("LARGEDCD", False), reason="Skipping large file test"
)
def test_large_dcdfile(large_dcdfile):
DCD_large, nreps = large_dcdfile
u_small = mda.Universe(PSF, DCD)
u = mda.Universe(PSF, DCD_large)
assert len(u.trajectory) == len(u_small.trajectory) * nreps
u_small.trajectory[-1]
u.trajectory[-1]
assert_array_almost_equal(u.atoms.positions, u_small.atoms.positions)
def test_dcd_writer_angle_cosines(tmpdir):
"""Test that DCDWriter correctly converts angles to cosines as documented.
This test verifies the fix for issue #5069 where DCDWriter was incorrectly
writing angles in degrees instead of angle cosines.
"""
u = mda.Universe(PSF_NAMD_TRICLINIC, DCD_NAMD_TRICLINIC)
original_dimensions = u.dimensions.copy()
outfile = str(tmpdir.join("test_angles.dcd"))
u.atoms.write(outfile, frames="all")
# Read back and check that dimensions are preserved
u2 = mda.Universe(PSF_NAMD_TRICLINIC, outfile)
# The dimensions should be identical when read back
assert_allclose(
u2.dimensions,
original_dimensions,
err_msg="DCDWriter failed to preserve unit cell dimensions (frame 0)",
)
# To get the originally stored dimensions, we need to directly access the DCD file.
u.trajectory._reopen()
frame = u.trajectory._file.read()
frame2 = u2.trajectory._file.read()
# direction cosines should be between -1 and 1
assert np.all(
np.abs(frame2.unitcell[[4, 3, 1]]) <= 1
), "DCDWriter failed to preserve unit cell angles as cosines"
# Directly test the stored dimensions from the DCD header
assert_allclose(
frame2.unitcell,
frame.unitcell, # stored as cos(angle) in the test trajectory
err_msg="DCDWriter failed to preserve unit cell dimensions as stored in the DCD file",
)
|