Skip to content

Commit

Permalink
Merge branch 'develop' into docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwoods2 committed Nov 28, 2024
2 parents 922d00a + 6b4b626 commit 4157b46
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/source/api.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
API Documentation
=================

.. automodule:: imdclient.IMDREADER
.. automodule:: imdclient.IMD
.. automodule:: imdclient.IMDClient
4 changes: 2 additions & 2 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Using IMDClient with MDAnalysis
Once the simulation is ready for a client connection, setup your MDAnalysis :class:`Universe`
like this: ::

from IMDClient.IMDREADER import IMDReader
from IMDClient.IMD import IMDReader
import MDAnalysis as mda
# Pass host and port of the listening simulation
# engine as the trajectory argument
Expand All @@ -55,4 +55,4 @@ like this: ::
While this package allows the IMDReader to be automatically selected
based on the trajectory URL matching the pattern 'imd://<host>:<port>',
the format can be explicitly selected by passing the keyword argument
'format="IMD"' to the :class:Universe.
'format="IMD"' to the :class:`Universe`.
2 changes: 1 addition & 1 deletion examples/gromacs/repo_files/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader
import MDAnalysis as mda
import logging
from imdclient.tests.datafiles import NAMD_TOPOL
Expand Down
2 changes: 1 addition & 1 deletion examples/gromacs/slurm/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# NOTE: chamge
from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader
import MDAnalysis as mda
import logging

Expand Down
2 changes: 1 addition & 1 deletion examples/gromacs/slurm/imd.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
#SBATCH -J GMX_IMDREADER
#SBATCH -J GMX_IMD
#SBATCH -N 1
#SBATCH -n 16
#SBATCH --gres=gpu:1
Expand Down
2 changes: 1 addition & 1 deletion examples/namd/repo_files/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader
import MDAnalysis as mda
import logging
from imdclient.tests.datafiles import NAMD_TOPOL
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion imdclient/tests/test_imdreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from MDAnalysis.transformations import translate
import pickle

from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader

logger = logging.getLogger("imdclient.IMDClient")
file_handler = logging.FileHandler("test.log")
Expand Down
2 changes: 1 addition & 1 deletion imdclient/tests/test_manual.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader
import pytest
import MDAnalysis as mda
from MDAnalysisTests.coordinates.base import assert_timestep_almost_equal
Expand Down
2 changes: 1 addition & 1 deletion imdclient/tests/test_stream_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)
import numpy as np
import pytest
from imdclient.IMDREADER import IMDReader
from imdclient.IMD import IMDReader


class TestStreamAnalysis:
Expand Down

0 comments on commit 4157b46

Please sign in to comment.