pdb-tools 2.5.0__py3-none-any.whl → 2.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pdb-tools might be problematic. Click here for more details.

Files changed (59) hide show
  1. {pdb_tools-2.5.0.dist-info → pdb_tools-2.6.0.dist-info}/METADATA +19 -11
  2. pdb_tools-2.6.0.dist-info/RECORD +55 -0
  3. {pdb_tools-2.5.0.dist-info → pdb_tools-2.6.0.dist-info}/WHEEL +1 -1
  4. {pdb_tools-2.5.0.dist-info → pdb_tools-2.6.0.dist-info}/entry_points.txt +0 -1
  5. {pdb_tools-2.5.0.dist-info → pdb_tools-2.6.0.dist-info}/top_level.txt +0 -1
  6. pdbtools/pdb_splitmodel.py +2 -1
  7. pdbtools/pdb_tidy.py +17 -9
  8. pdb_tools-2.5.0.dist-info/RECORD +0 -105
  9. tests/__init__.py +0 -38
  10. tests/config.py +0 -25
  11. tests/test_pdb_b.py +0 -161
  12. tests/test_pdb_chain.py +0 -160
  13. tests/test_pdb_chainbows.py +0 -140
  14. tests/test_pdb_chainxseg.py +0 -156
  15. tests/test_pdb_chkensemble.py +0 -191
  16. tests/test_pdb_delchain.py +0 -165
  17. tests/test_pdb_delelem.py +0 -165
  18. tests/test_pdb_delhetatm.py +0 -115
  19. tests/test_pdb_delinsertion.py +0 -226
  20. tests/test_pdb_delres.py +0 -241
  21. tests/test_pdb_delresname.py +0 -171
  22. tests/test_pdb_element.py +0 -151
  23. tests/test_pdb_fixinsert.py +0 -223
  24. tests/test_pdb_fromcif.py +0 -124
  25. tests/test_pdb_gap.py +0 -125
  26. tests/test_pdb_head.py +0 -142
  27. tests/test_pdb_intersect.py +0 -139
  28. tests/test_pdb_keepcoord.py +0 -115
  29. tests/test_pdb_merge.py +0 -106
  30. tests/test_pdb_mkensemble.py +0 -132
  31. tests/test_pdb_occ.py +0 -161
  32. tests/test_pdb_reatom.py +0 -243
  33. tests/test_pdb_reres.py +0 -281
  34. tests/test_pdb_rplchain.py +0 -172
  35. tests/test_pdb_rplresname.py +0 -172
  36. tests/test_pdb_seg.py +0 -160
  37. tests/test_pdb_segxchain.py +0 -146
  38. tests/test_pdb_selaltloc.py +0 -943
  39. tests/test_pdb_selatom.py +0 -165
  40. tests/test_pdb_selchain.py +0 -210
  41. tests/test_pdb_selelem.py +0 -165
  42. tests/test_pdb_selhetatm.py +0 -116
  43. tests/test_pdb_selmodel.py +0 -165
  44. tests/test_pdb_selres.py +0 -257
  45. tests/test_pdb_selresname.py +0 -171
  46. tests/test_pdb_selseg.py +0 -165
  47. tests/test_pdb_shiftres.py +0 -241
  48. tests/test_pdb_sort.py +0 -254
  49. tests/test_pdb_splitchain.py +0 -242
  50. tests/test_pdb_splitmodel.py +0 -235
  51. tests/test_pdb_splitseg.py +0 -251
  52. tests/test_pdb_tidy.py +0 -312
  53. tests/test_pdb_tocif.py +0 -238
  54. tests/test_pdb_tofasta.py +0 -158
  55. tests/test_pdb_uniqname.py +0 -156
  56. tests/test_pdb_validate.py +0 -142
  57. tests/test_pdb_wc.py +0 -161
  58. tests/utils.py +0 -56
  59. {pdb_tools-2.5.0.dist-info → pdb_tools-2.6.0.dist-info/licenses}/LICENSE +0 -0
@@ -1,165 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_delchain`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_delchain'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_default(self):
57
- """$ pdb_delchain -A data/dummy.pdb"""
58
-
59
- # Simulate input
60
- # pdb_delchain dummy.pdb
61
- sys.argv = ['', '-A', os.path.join(data_dir, 'dummy.pdb')]
62
-
63
- # Execute the script
64
- self.exec_module()
65
-
66
- # Validate results
67
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
68
- self.assertEqual(len(self.stdout), 144) # deleted chain A (60 atoms)
69
- self.assertEqual(len(self.stderr), 0) # no errors
70
-
71
- def test_multiple(self):
72
- """
73
- $ pdb_delchain -A,B data/dummy.pdb
74
- """
75
-
76
- sys.argv = ['', '-A,B', os.path.join(data_dir, 'dummy.pdb')]
77
-
78
- self.exec_module()
79
-
80
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
81
- self.assertEqual(len(self.stdout), 91) # deleted chains A+B (153 atoms)
82
- self.assertEqual(len(self.stderr), 0) # no errors
83
-
84
- def test_file_not_found(self):
85
- """$ pdb_delchain not_existing.pdb"""
86
-
87
- afile = os.path.join(data_dir, 'not_existing.pdb')
88
- sys.argv = ['', afile]
89
-
90
- self.exec_module()
91
-
92
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
93
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
94
- self.assertEqual(self.stderr[0][:22],
95
- "ERROR!! File not found") # proper error message
96
-
97
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
98
- def test_file_missing(self):
99
- """$ pdb_delchain -A"""
100
-
101
- sys.argv = ['', '-A']
102
-
103
- self.exec_module()
104
-
105
- self.assertEqual(self.retcode, 1)
106
- self.assertEqual(len(self.stdout), 0) # no output
107
- self.assertEqual(self.stderr[0],
108
- "ERROR!! No data to process!")
109
-
110
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
111
- def test_helptext(self):
112
- """$ pdb_delchain"""
113
-
114
- sys.argv = ['']
115
-
116
- self.exec_module()
117
-
118
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
119
- self.assertEqual(len(self.stdout), 0) # no output
120
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
121
-
122
- def test_invalid_option(self):
123
- """$ pdb_delchain data/dummy.pdb"""
124
-
125
- sys.argv = ['', os.path.join(data_dir, 'dummy.pdb')]
126
-
127
- self.exec_module()
128
-
129
- self.assertEqual(self.retcode, 1)
130
- self.assertEqual(len(self.stdout), 0)
131
- self.assertEqual(self.stderr[0][:47],
132
- "ERROR!! You must provide at least one chain ide")
133
-
134
- def test_invalid_option_2(self):
135
- """$ pdb_delchain -AB data/dummy.pdb"""
136
-
137
- sys.argv = ['', '-AB', os.path.join(data_dir, 'dummy.pdb')]
138
-
139
- self.exec_module()
140
-
141
- self.assertEqual(self.retcode, 1)
142
- self.assertEqual(len(self.stdout), 0)
143
- self.assertEqual(self.stderr[0][:40],
144
- "ERROR!! Chain identifier name is invalid")
145
-
146
- def test_not_an_option(self):
147
- """$ pdb_delchain 20 data/dummy.pdb"""
148
-
149
- sys.argv = ['', '20', os.path.join(data_dir, 'dummy.pdb')]
150
-
151
- self.exec_module()
152
-
153
- self.assertEqual(self.retcode, 1)
154
- self.assertEqual(len(self.stdout), 0)
155
- self.assertEqual(self.stderr[0],
156
- "ERROR! First argument is not an option: '20'")
157
-
158
-
159
- if __name__ == '__main__':
160
- from config import test_dir
161
-
162
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
163
- sys.path.insert(0, mpath) # so we load dev files before any installation
164
-
165
- unittest.main()
tests/test_pdb_delelem.py DELETED
@@ -1,165 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_delelem`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_delelem'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_default(self):
57
- """$ pdb_delelem -H data/dummy.pdb"""
58
-
59
- # Simulate input
60
- # pdb_delelem dummy.pdb
61
- sys.argv = ['', '-H', os.path.join(data_dir, 'dummy.pdb')]
62
-
63
- # Execute the script
64
- self.exec_module()
65
-
66
- # Validate results
67
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
68
- self.assertEqual(len(self.stdout), 130) # deleted 74 protons
69
- self.assertEqual(len(self.stderr), 0) # no errors
70
-
71
- def test_multiple(self):
72
- """
73
- $ pdb_delelem -C,H data/dummy.pdb
74
- """
75
-
76
- sys.argv = ['', '-C,H', os.path.join(data_dir, 'dummy.pdb')]
77
-
78
- self.exec_module()
79
-
80
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
81
- self.assertEqual(len(self.stdout), 89) # deleted protons and 41 carbons
82
- self.assertEqual(len(self.stderr), 0) # no errors
83
-
84
- def test_file_not_found(self):
85
- """$ pdb_delelem not_existing.pdb"""
86
-
87
- afile = os.path.join(data_dir, 'not_existing.pdb')
88
- sys.argv = ['', afile]
89
-
90
- self.exec_module()
91
-
92
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
93
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
94
- self.assertEqual(self.stderr[0][:22],
95
- "ERROR!! File not found") # proper error message
96
-
97
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
98
- def test_file_missing(self):
99
- """$ pdb_delelem -A"""
100
-
101
- sys.argv = ['', '-A']
102
-
103
- self.exec_module()
104
-
105
- self.assertEqual(self.retcode, 1)
106
- self.assertEqual(len(self.stdout), 0) # no output
107
- self.assertEqual(self.stderr[0],
108
- "ERROR!! No data to process!")
109
-
110
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
111
- def test_helptext(self):
112
- """$ pdb_delelem"""
113
-
114
- sys.argv = ['']
115
-
116
- self.exec_module()
117
-
118
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
119
- self.assertEqual(len(self.stdout), 0) # no output
120
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
121
-
122
- def test_invalid_option(self):
123
- """$ pdb_delelem data/dummy.pdb"""
124
-
125
- sys.argv = ['', os.path.join(data_dir, 'dummy.pdb')]
126
-
127
- self.exec_module()
128
-
129
- self.assertEqual(self.retcode, 1)
130
- self.assertEqual(len(self.stdout), 0)
131
- self.assertEqual(self.stderr[0][:47],
132
- "ERROR!! You must provide at least one element n")
133
-
134
- def test_invalid_option_2(self):
135
- """$ pdb_delelem -ABD data/dummy.pdb"""
136
-
137
- sys.argv = ['', '-ABC', os.path.join(data_dir, 'dummy.pdb')]
138
-
139
- self.exec_module()
140
-
141
- self.assertEqual(self.retcode, 1)
142
- self.assertEqual(len(self.stdout), 0)
143
- self.assertEqual(self.stderr[0][:32],
144
- "ERROR!! Element name is invalid:")
145
-
146
- def test_not_an_option(self):
147
- """$ pdb_delelem 20 data/dummy.pdb"""
148
-
149
- sys.argv = ['', '20', os.path.join(data_dir, 'dummy.pdb')]
150
-
151
- self.exec_module()
152
-
153
- self.assertEqual(self.retcode, 1)
154
- self.assertEqual(len(self.stdout), 0)
155
- self.assertEqual(self.stderr[0],
156
- "ERROR! First argument is not an option: '20'")
157
-
158
-
159
- if __name__ == '__main__':
160
- from config import test_dir
161
-
162
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
163
- sys.path.insert(0, mpath) # so we load dev files before any installation
164
-
165
- unittest.main()
@@ -1,115 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_delhetatm`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_delhetatm'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_default(self):
57
- """$ pdb_delhetatm data/dummy.pdb"""
58
-
59
- # Simulate input
60
- # pdb_delhetatm dummy.pdb
61
- sys.argv = ['', os.path.join(data_dir, 'dummy.pdb')]
62
-
63
- # Execute the script
64
- self.exec_module()
65
-
66
- # Validate results
67
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
68
- self.assertEqual(len(self.stdout), 194) # 9 HETATM records + 2 CONECT
69
- self.assertEqual(len(self.stderr), 0) # no errors
70
-
71
- def test_file_not_found(self):
72
- """$ pdb_delhetatm not_existing.pdb"""
73
-
74
- afile = os.path.join(data_dir, 'not_existing.pdb')
75
- sys.argv = ['', afile]
76
-
77
- self.exec_module()
78
-
79
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
80
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
81
- self.assertEqual(self.stderr[0][:22],
82
- "ERROR!! File not found") # proper error message
83
-
84
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
85
- def test_helptext(self):
86
- """$ pdb_delhetatm"""
87
-
88
- sys.argv = ['']
89
-
90
- self.exec_module()
91
-
92
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
93
- self.assertEqual(len(self.stdout), 0) # no output
94
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
95
-
96
- def test_invalid_option(self):
97
- """$ pdb_delhetatm -A data/dummy.pdb"""
98
-
99
- sys.argv = ['', '-A', os.path.join(data_dir, 'dummy.pdb')]
100
-
101
- self.exec_module()
102
-
103
- self.assertEqual(self.retcode, 1)
104
- self.assertEqual(len(self.stdout), 0)
105
- self.assertEqual(self.stderr[0][:36],
106
- "ERROR!! Script takes 1 argument, not")
107
-
108
-
109
- if __name__ == '__main__':
110
- from config import test_dir
111
-
112
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
113
- sys.path.insert(0, mpath) # so we load dev files before any installation
114
-
115
- unittest.main()
@@ -1,226 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_fixinsert`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
- import warnings
26
-
27
- from config import data_dir
28
- from utils import OutputCapture
29
-
30
-
31
- class TestTool(unittest.TestCase):
32
- """
33
- Generic class for testing tools.
34
- """
35
-
36
- def setUp(self):
37
- # Dynamically import the module
38
- name = 'pdbtools.pdb_delinsertion'
39
- self.module = __import__(name, fromlist=[''])
40
-
41
- def exec_module(self):
42
- """
43
- Execs module.
44
- """
45
-
46
- with OutputCapture() as output:
47
- try:
48
- with warnings.catch_warnings():
49
- warnings.simplefilter("ignore")
50
- self.module.main()
51
- except SystemExit as e:
52
- self.retcode = e.code
53
-
54
- self.stdout = output.stdout
55
- self.stderr = output.stderr
56
-
57
- return
58
-
59
- def test_default(self):
60
- """$ pdb_fixinsert data/dummy_insertions.pdb"""
61
-
62
- # Simulate input
63
- # pdb_fixinsert dummy_insertions.pdb
64
- sys.argv = ['', os.path.join(data_dir, 'dummy_insertions.pdb')]
65
-
66
- # Execute the script
67
- self.exec_module()
68
-
69
- # Validate results
70
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
71
- self.assertEqual(len(self.stdout), 255) # no lines deleted
72
- self.assertEqual(len(self.stderr), 0) # no errors
73
-
74
- # Check if we do not have any insertions
75
- records = (('ATOM', 'HETATM', 'TER'))
76
- icodes = set(l[26] for l in self.stdout if l.startswith(records))
77
- self.assertEqual(icodes, set(' '))
78
-
79
- # Check numbering was corrected
80
- resid = [int(l[22:26]) for l in self.stdout if l.startswith(records)]
81
- expected = [
82
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
83
- 4, 4, 4, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8,
84
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7,
85
- 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9,
86
- 9, 9, 9, 9, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
87
- 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
88
- 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5,
89
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
90
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, -1, -1, -1, -1, -1, -1,
91
- -1, -1, -1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
92
- 2, 301, 302, 303, 301, 301, 302, 303, 304, 305
93
- ]
94
- self.assertEqual(resid, expected)
95
-
96
- def test_select_insertion(self):
97
- """$ pdb_fixinsert -A1 data/dummy_insertions.pdb"""
98
-
99
- sys.argv = ['', '-A1', os.path.join(data_dir, 'dummy_insertions.pdb')]
100
-
101
- self.exec_module()
102
-
103
- self.assertEqual(self.retcode, 0)
104
- self.assertEqual(len(self.stdout), 255)
105
- self.assertEqual(len(self.stderr), 0)
106
-
107
- records = (('ATOM', 'HETATM', 'TER'))
108
-
109
- # Check the insertions were deleted specifically
110
- for line in self.stdout:
111
- if line.startswith(records):
112
- icode = line[26]
113
- resid = int(line[22:26])
114
- if line[17:26] == 'ARG B 4':
115
- self.assertIn(icode, ('A', 'B'))
116
- self.assertEqual(resid, 4)
117
- elif line[17:26] == 'GLY B 4':
118
- self.assertEqual(icode, ' ')
119
- self.assertEqual(resid, 4)
120
- elif line[17:26] == 'ASN A 1':
121
- self.assertEqual(icode, ' ')
122
- self.assertEqual(resid, 1)
123
- elif line[17:26] == 'GLY A 1':
124
- self.assertEqual(icode, ' ')
125
- self.assertEqual(resid, 2) # should have renumbered
126
-
127
- # Check numbering was corrected overall
128
- resid = [int(l[22:26]) for l in self.stdout if l.startswith(records)]
129
- expected = [
130
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
131
- 4, 4, 4, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8,
132
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7,
133
- 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9,
134
- 9, 9, 9, 9, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
135
- 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
136
- 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5,
137
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
138
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, -1, -1, -1, -1, -1, -1,
139
- -1, -1, -1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
140
- 2, 301, 302, 303, 301, 301, 302, 303, 304, 305
141
- ]
142
-
143
- self.assertEqual(resid, expected)
144
-
145
- def test_file_not_found(self):
146
- """$ pdb_fixinsert not_existing.pdb"""
147
-
148
- afile = os.path.join(data_dir, 'not_existing.pdb')
149
- sys.argv = ['', afile]
150
-
151
- self.exec_module()
152
-
153
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
154
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
155
- self.assertEqual(self.stderr[0][:22],
156
- "ERROR!! File not found") # proper error message
157
-
158
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
159
- def test_file_missing(self):
160
- """$ pdb_fixinsert -A89"""
161
-
162
- sys.argv = ['', '-A89']
163
-
164
- self.exec_module()
165
-
166
- self.assertEqual(self.retcode, 1)
167
- self.assertEqual(len(self.stdout), 0) # no output
168
- self.assertEqual(self.stderr[0],
169
- "ERROR!! No data to process!")
170
-
171
- # @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
172
- # def test_helptext(self):
173
- # """$ pdb_fixinsert"""
174
-
175
- # sys.argv = ['']
176
-
177
- # self.exec_module()
178
-
179
- # self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
180
- # self.assertEqual(len(self.stdout), 0) # no output
181
- # self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
182
-
183
- def test_invalid_option(self):
184
- """$ pdb_fixinsert -A data/dummy_insertions.pdb"""
185
-
186
- sys.argv = ['', '-A', os.path.join(data_dir, 'dummy_insertions.pdb')]
187
-
188
- self.exec_module()
189
-
190
- self.assertEqual(self.retcode, 1)
191
- self.assertEqual(len(self.stdout), 0)
192
- self.assertEqual(self.stderr[0][:27],
193
- "ERROR!! Option invalid: 'A'")
194
-
195
- def test_invalid_option_2(self):
196
- """$ pdb_fixinsert -12A data/dummy_insertions.pdb"""
197
-
198
- sys.argv = ['', '-12A', os.path.join(data_dir, 'dummy_insertions.pdb')]
199
-
200
- self.exec_module()
201
-
202
- self.assertEqual(self.retcode, 1)
203
- self.assertEqual(len(self.stdout), 0)
204
- self.assertEqual(self.stderr[0][:39],
205
- "ERROR!! Option invalid: '12A'")
206
-
207
- def test_not_an_option(self):
208
- """$ pdb_fixinsert 20 data/dummy_insertions.pdb"""
209
-
210
- sys.argv = ['', '20', os.path.join(data_dir, 'dummy_insertions.pdb')]
211
-
212
- self.exec_module()
213
-
214
- self.assertEqual(self.retcode, 1)
215
- self.assertEqual(len(self.stdout), 0)
216
- self.assertEqual(self.stderr[0],
217
- "ERROR! First argument is not an option: '20'")
218
-
219
-
220
- if __name__ == '__main__':
221
- from config import test_dir
222
-
223
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
224
- sys.path.insert(0, mpath) # so we load dev files before any installation
225
-
226
- unittest.main()