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
|
# -*- 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 pytest
import numpy as np
from numpy.testing import assert_allclose
import MDAnalysis as mda
from MDAnalysisTests.datafiles import TRC_PDB_VAC, TRC_TRAJ1_VAC, TRC_TRAJ2_VAC
from MDAnalysisTests.datafiles import TRC_CLUSTER_VAC, TRC_EMPTY
from MDAnalysisTests.datafiles import TRC_GENBOX_ORIGIN, TRC_GENBOX_EULER
from MDAnalysisTests.datafiles import TRC_PDB_SOLV, TRC_TRAJ_SOLV
from MDAnalysisTests.datafiles import TRC_TRICLINIC_SOLV, TRC_TRUNCOCT_VAC
from MDAnalysisTests.datafiles import TRC_TRAJ1_VAC_WHITESPACE
from MDAnalysisTests.datafiles import TRC_TRAJ1_VAC_MISSING_POS
from MDAnalysisTests.datafiles import TRC_TRAJ1_VAC_EXTRA_POS
class TestTRCReaderVacuumBox:
@pytest.fixture(scope="class")
def TRC_U(self):
return mda.Universe(
TRC_PDB_VAC, [TRC_TRAJ1_VAC, TRC_TRAJ2_VAC], continuous=True
)
def test_initial_frame_is_0(self, TRC_U):
assert TRC_U.trajectory.ts.frame == 0
def test_trc_positions(self, TRC_U):
# first frame first particle
TRC_U.trajectory[0]
assert_allclose(
TRC_U.atoms.positions[0], [2.19782507, 24.65064345, 29.39783426]
)
# fith frame first particle
TRC_U.trajectory[4]
assert_allclose(
TRC_U.atoms.positions[0], [0.37026654, 22.78805010, 3.69695262]
)
def test_trc_dimensions(self, TRC_U):
assert TRC_U.trajectory[0].dimensions is None
def test_trc_n_frames(self, TRC_U):
assert len(TRC_U.trajectory) == 6
assert (TRC_U.trajectory.n_frames) == 6
def test_trc_n_atoms(self, TRC_U):
assert (TRC_U.trajectory.n_atoms) == 73
def test_trc_frame(self, TRC_U):
assert TRC_U.trajectory[0].frame == 0
assert TRC_U.trajectory[4].frame == 4
def test_trc_time(self, TRC_U):
assert TRC_U.trajectory[0].time == 0
assert TRC_U.trajectory[4].time == 80
def test_trc_dt(self, TRC_U):
time_array = np.array([ts.time for ts in TRC_U.trajectory])
assert_allclose(time_array, np.arange(6) * 20.0)
dt_array = np.diff(time_array)
assert_allclose(dt_array, np.full(5, 20.0))
def test_trc_data_step(self, TRC_U):
assert TRC_U.trajectory[0].data["step"] == 0
assert TRC_U.trajectory[4].data["step"] == 10000
def test_periodic(self, TRC_U):
assert TRC_U.trajectory.periodic is False
def test_rewind(self, TRC_U):
TRC_U.trajectory[0]
trc = TRC_U.trajectory
trc.next()
trc.next()
trc.next()
trc.next()
assert (
trc.ts.frame == 4
), "trajectory.next() did not forward to frameindex 4"
trc.rewind()
assert (
trc.ts.frame == 0
), "trajectory.rewind() failed to rewind to first frame"
assert np.any(
TRC_U.atoms.positions != 0
), "The atom positions are not populated"
def test_random_access(self, TRC_U):
TRC_U.trajectory[0]
pos0 = TRC_U.atoms.positions
TRC_U.trajectory.next()
TRC_U.trajectory.next()
pos2 = TRC_U.atoms.positions
TRC_U.trajectory[0]
assert_allclose(TRC_U.atoms.positions, pos0)
TRC_U.trajectory[2]
assert_allclose(TRC_U.atoms.positions, pos2)
def test_read_frame_reopens(self, TRC_U):
TRC_U.trajectory._reopen()
TRC_U.trajectory[4]
assert TRC_U.trajectory.ts.frame == 4
class TestTRCReaderVacuumBoxWhitespace(TestTRCReaderVacuumBox):
@pytest.fixture(scope="class")
def TRC_U(self):
filename = TRC_TRAJ1_VAC_WHITESPACE
warnmsg = f"Inconsistent POSITIONRED block size in file {filename}. Falling back to slow reader."
with pytest.warns(UserWarning, match=warnmsg):
return mda.Universe(
TRC_PDB_VAC,
[TRC_TRAJ1_VAC_WHITESPACE, TRC_TRAJ2_VAC],
continuous=True,
)
class TestTRCReaderSolvatedBox:
@pytest.fixture(scope="class")
def TRC_U(self):
return mda.Universe(TRC_PDB_SOLV, TRC_TRAJ_SOLV)
def test_trc_n_atoms(self, TRC_U):
assert TRC_U.trajectory.n_atoms == 2797
def test_periodic(self, TRC_U):
assert TRC_U.trajectory.periodic is True
def test_trc_dimensions(self, TRC_U):
ts = TRC_U.trajectory[1]
assert_allclose(
ts.dimensions,
[30.54416298, 30.54416298, 30.54416298, 90.0, 90.0, 90.0],
)
def test_open_twice(self, TRC_U):
TRC_U.trajectory._reopen()
with pytest.raises(IOError):
TRC_U.trajectory.open_trajectory()
class TestTRCReaderSolvatedBoxNoConvert:
@pytest.fixture(scope="class")
def TRC_U(self):
return mda.Universe(TRC_PDB_SOLV, TRC_TRAJ_SOLV, convert_units=False)
def test_trc_dimensions(self, TRC_U):
ts = TRC_U.trajectory[1]
assert_allclose(
ts.dimensions,
[3.054416298, 3.054416298, 3.054416298, 90.0, 90.0, 90.0],
)
class TestTRCReaderTriclinicBox:
@pytest.fixture(scope="class")
def TRC_U(self):
return mda.Universe(TRC_PDB_SOLV, TRC_TRICLINIC_SOLV)
def test_trc_n_atoms(self, TRC_U):
assert TRC_U.trajectory.n_atoms == 2797
def test_periodic(self, TRC_U):
assert TRC_U.trajectory.periodic is True
def test_trc_dimensions(self, TRC_U):
ts = TRC_U.trajectory[0]
assert_allclose(
ts.dimensions,
[
33.72394463,
38.87568624,
26.74177871,
91.316862341,
93.911031544,
54.514000084,
],
)
def test_trc_distances(self, TRC_U):
import MDAnalysis.analysis.distances as distances
import MDAnalysis.analysis.atomicdistances as atomicdistances
ts = TRC_U.trajectory[0]
atom_1a = TRC_U.select_atoms("resname LYSH and name O and resid 4")
atom_1b = TRC_U.select_atoms("resname ARG and name H and resid 3")
atom_1c = TRC_U.select_atoms("resname SOLV and name OW and resid 718")
atom_1d = TRC_U.select_atoms("resname SOLV and name OW and resid 305")
atom_2a = TRC_U.select_atoms("resname VAL and name CG1 and resid 1")
atom_2b = TRC_U.select_atoms("resname SOLV and name OW and resid 497")
atom_2c = TRC_U.select_atoms("resname SOLV and name OW and resid 593")
atom_2d = TRC_U.select_atoms("resname SOLV and name OW and resid 497")
ag1 = atom_1a + atom_1b + atom_1c + atom_1d
ag2 = atom_2a + atom_2b + atom_2c + atom_2d
dist_A = distances.dist(ag1, ag2, box=ts.dimensions)[
2
] # return distance
dist_B = (
atomicdistances.AtomicDistances(ag1, ag2, pbc=True)
.run()
.results[0]
)
assert_allclose(
dist_A, [5.9488481, 4.4777278, 20.8165518, 7.5727112], rtol=1e-06
) # Reference values calculated with gromos++ tser
assert_allclose(
dist_B, [5.9488481, 4.4777278, 20.8165518, 7.5727112], rtol=1e-06
) # Reference values calculated with gromos++ tser
class TestTRCReaderTruncOctBox:
def test_universe(self):
with pytest.raises(ValueError, match="truncated-octahedral"):
mda.Universe(TRC_PDB_VAC, TRC_TRUNCOCT_VAC)
class TestTRCGenboxOrigin:
def test_universe(self):
with pytest.raises(
ValueError, match="doesnt't support a shifted origin!"
):
mda.Universe(TRC_PDB_VAC, TRC_GENBOX_ORIGIN)
class TestTRCGenboxEuler:
def test_universe(self):
with pytest.raises(
ValueError,
match=("doesnt't support yawed, pitched or rolled boxes!"),
):
mda.Universe(TRC_PDB_VAC, TRC_GENBOX_EULER)
class TestTRCEmptyFile:
def test_universe(self):
with pytest.raises(
ValueError,
match=(
"No supported blocks were found within the GROMOS trajectory!"
),
):
mda.Universe(TRC_PDB_VAC, TRC_EMPTY)
class TestTRCReaderClusterTrajectory:
@pytest.fixture(scope="class")
def TRC_U(self):
with pytest.warns(UserWarning) as record_of_warnings:
TRC_U = mda.Universe(TRC_PDB_VAC, TRC_CLUSTER_VAC, format="TRC")
warning_strings = [
"The trajectory does not contain TIMESTEP blocks!",
"POSITION block is not supported!",
]
warning_strings_found = 0
for w in record_of_warnings:
if str(w.message) in warning_strings:
warning_strings_found += 1
assert warning_strings_found == 2
return TRC_U
def test_trc_n_atoms(self, TRC_U):
assert TRC_U.trajectory.n_atoms == 73
def test_periodic(self, TRC_U):
assert TRC_U.trajectory.periodic is False
def test_trc_dimensions(self, TRC_U):
ts = TRC_U.trajectory[1]
assert ts.dimensions is None
def test_trc_n_frames(self, TRC_U):
assert len(TRC_U.trajectory) == 3
assert TRC_U.trajectory.n_frames == 3
def test_trc_frame(self, TRC_U):
with pytest.warns(
UserWarning, match="POSITION block is not supported!"
):
assert TRC_U.trajectory[0].frame == 0
assert TRC_U.trajectory[2].frame == 2
def test_trc_time(self, TRC_U):
with pytest.warns(
UserWarning, match="POSITION block is not supported!"
):
assert TRC_U.trajectory[0].time == 0
assert TRC_U.trajectory[2].time == 0
class TestTRCReaderMissingPositions:
@pytest.fixture(scope="class")
def TRC_U(self):
filename = TRC_TRAJ1_VAC_MISSING_POS
warnmsg = f"Inconsistent POSITIONRED block size in file {filename}. Falling back to slow reader."
with pytest.warns(UserWarning, match=warnmsg):
TRC_U = mda.Universe(TRC_PDB_VAC, TRC_TRAJ1_VAC_MISSING_POS)
return TRC_U
def test_missing_position(self, TRC_U):
errormsg = "Found 72 atoms in step 2, but expected 73"
with pytest.raises(ValueError, match=errormsg):
TRC_U.trajectory[-1].positions
class TestTRCReaderExtraPositions:
@pytest.fixture(scope="class")
def TRC_U(self):
filename = TRC_TRAJ1_VAC_EXTRA_POS
warnmsg = f"Inconsistent POSITIONRED block size in file {filename}. Falling back to slow reader."
with pytest.warns(UserWarning, match=warnmsg):
TRC_U = mda.Universe(TRC_PDB_VAC, TRC_TRAJ1_VAC_EXTRA_POS)
return TRC_U
def test_missing_position(self, TRC_U):
errormsg = "Found 74 atoms in step 2, but expected 73"
with pytest.raises(ValueError, match=errormsg):
TRC_U.trajectory[-1].positions
|