Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Feb 26, 2021
1 parent a9b227b commit eed33c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prody/dynamics/comd.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def run(self, cutoff=15., n_modes=20, gamma=1., n_confs=50, rmsd=1.0,
'''

if self._isBuilt():
raise ValueError('ClustENM ensemble has been built; please start a new instance')
raise ValueError('CoMD ensemble has been built; please start a new instance')

# set up parameters
self._cutoff = cutoff
Expand Down
2 changes: 1 addition & 1 deletion prody/dynamics/hybrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ def run(self, cutoff=15., n_modes=3, gamma=1., n_confs=50, rmsd=1.0,
'''

if self._isBuilt():
raise ValueError('ClustENM ensemble has been built; please start a new instance')
raise ValueError('ClustENM-like ensemble has been built; please start a new instance')

# set up parameters
self._cutoff = cutoff
Expand Down

0 comments on commit eed33c9

Please sign in to comment.