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
|
##############################################################################
# MDTraj: A Python Library for Loading, Saving, and Manipulating
# Molecular Dynamics Trajectories.
# Copyright 2012-2013 Stanford University and the Authors
#
# Authors: Robert McGibbon
# Contributors:
#
# 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/>.
##############################################################################
from mdtraj import load, load_topology
from mdtraj.testing import eq
def test_xml(get_fn):
top = load_topology(get_fn("native2.pdb"), no_boxchk=True)
t1 = load(get_fn("native2.xml"), top=top)
t2 = load(get_fn("native2.pdb"), no_boxchk=True)
t1.center_coordinates()
t2.center_coordinates()
assert eq(t1.xyz, t2.xyz)
assert eq(t1.unitcell_vectors, t2.unitcell_vectors)
|