From 47e78cce6c1a9d99a80480dd5de852db1f951e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCller?= Date: Tue, 14 Nov 2017 13:43:59 +0100 Subject: [PATCH] Change coordinates property to positions, according to mdanalysis. --- pygmx/gromacs/reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygmx/gromacs/reader.py b/pygmx/gromacs/reader.py index 407c723..4898e4a 100644 --- a/pygmx/gromacs/reader.py +++ b/pygmx/gromacs/reader.py @@ -135,7 +135,7 @@ class XTCFrame: self._coordinates = None @property - def coordinates(self): + def positions(self): if self._coordinates is None: self._coordinates = self._compressed_coordinates() return self._coordinates