Skip to content

Commit

Permalink
Better NDTiff reading when the first position is missing (#190)
Browse files Browse the repository at this point in the history
better ndtiff reading them p_idx=0 missing
  • Loading branch information
ieivanov authored Sep 26, 2023
1 parent fc1db13 commit 1538005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iohub/ndtiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _get_summary_metadata(self):
position_metadata = {}
img_metadata = self.get_image_metadata(position, 0, 0, 0)

if all(
if img_metadata is not None and all(
key in img_metadata.keys()
for key in [
"XPosition_um_Intended",
Expand Down

0 comments on commit 1538005

Please sign in to comment.