We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8b5d6 commit 2255efeCopy full SHA for 2255efe
src/aspire/storage/starfile.py
@@ -100,11 +100,10 @@ def _initialize_blocks(self):
100
)
101
loop_tags = gemmi_item.loop.tags
102
# convert loop data to a list of lists
103
- # using the .val(row, col) method of gemmi's Loop class
104
loop_data = [None] * gemmi_item.loop.length()
105
for row in range(gemmi_item.loop.length()):
106
loop_data[row] = [
107
- gemmi_item.loop.val(row, col)
+ gemmi_item.loop[row, col]
108
for col in range(gemmi_item.loop.width())
109
]
110
if block_has_pair:
0 commit comments