Skip to content

Commit

Permalink
upgrade exprorer_msmd version
Browse files Browse the repository at this point in the history
  • Loading branch information
keisuke-yanagisawa committed Aug 16, 2024
1 parent 80090d4 commit 0c64c50
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM kyanagis/exprorer_msmd:2024.02.12
FROM kyanagis/exprorer_msmd:2024.08.16

RUN mamba install -y pytest
RUN pip install mypy pytest isort
RUN pip install mypy pytest isort ipykernel
RUN apt install -y openssh-client

# ====== settings for git / ssh =======
RUN echo "mkdir -p /root/.ssh" >> /etc/bash.bashrc
Expand Down
14 changes: 7 additions & 7 deletions script/test_data/tripeptide_A11.parm7
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
%VERSION VERSION_STAMP = V0001.000 DATE = 05/03/24 21:34:13
%VERSION VERSION_STAMP = V0001.000 DATE = 08/16/24 09:15:22
%FLAG TITLE
%FORMAT(20a4)
default_name
%FLAG POINTERS
%FORMAT(10I8)
4527 16 4477 43 162 49 266 86 0 0
6471 1476 43 49 86 31 56 54 22 1
6471 1476 43 49 86 31 56 54 22 0
0 0 0 0 0 0 0 1 23 0
0
%FLAG ATOM_NAME
Expand Down Expand Up @@ -3443,9 +3443,9 @@ H2 O H1 H2 O H1 H2
87 88 89 90 91 104 118 133 92 93
94 95 96 97 98 99 100 101 102 103
104 105 119 134 106 107 108 109 110 111
112 113 114 115 116 117 118 119 120 -1
112 113 114 115 116 117 118 119 120 135
121 122 123 124 125 126 127 128 129 130
131 132 133 134 -1 136
131 132 133 134 135 136
%FLAG RESIDUE_LABEL
%FORMAT(20a4)
MET ASP LYS A11 A11 A11 A11 A11 A11 WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT
Expand Down Expand Up @@ -6132,13 +6132,13 @@ WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT WAT
0
%FLAG HBOND_ACOEF
%FORMAT(5E16.8)
0.00000000E+00

%FLAG HBOND_BCOEF
%FORMAT(5E16.8)
0.00000000E+00

%FLAG HBCUT
%FORMAT(5E16.8)
0.00000000E+00

%FLAG AMBER_ATOM_TYPE
%FORMAT(20a4)
N3 H H H CX HP 2C HC HC 2C H1 H1 S CT H1 H1 H1 C O N
Expand Down
3 changes: 2 additions & 1 deletion script/utilities/executable/test_packmol.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import TestCase

from script.utilities.executable.packmol import Packmol
from subprocess import CalledProcessError


class TestPackmol(TestCase):
Expand Down Expand Up @@ -38,7 +39,7 @@ def test_high_molar(self):
packmol.run(seed=1)

def test_extremely_high_molar(self):
with self.assertRaises(RuntimeError):
with self.assertRaises((RuntimeError,CalledProcessError)):
packmol = Packmol()
with warnings.catch_warnings():
# this test case will raise a RuntimeWarning, but we don't care
Expand Down

0 comments on commit 0c64c50

Please sign in to comment.