Skip to content

Commit 7c26eb8

Browse files
authored
fixed the way to load universe
previously was: u = mda.Universe(NAMD_TOPOL, "localhost:8888"), fixed to: u = mda.Universe(NAMD_TOPOL, "imd://localhost:8888")
1 parent 97cc13a commit 7c26eb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/gromacs/repo_files/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
logger.setLevel(logging.INFO)
1414

1515
i = 0
16-
u = mda.Universe(NAMD_TOPOL, "localhost:8888")
16+
u = mda.Universe(NAMD_TOPOL, "imd://localhost:8888")
1717
for ts in u.trajectory:
1818
i += 1
1919

0 commit comments

Comments
 (0)