Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to override min_size via command-line argument #114

Merged
merged 8 commits into from
Dec 22, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -1222,11 +1222,11 @@ public void testMinSizeOption() throws Exception {
List<Map<String, Object>> datasets =
(List<Map<String, Object>>) multiscale.get("datasets");

String last_path = (String) datasets.get(datasets.size() - 1).get("path");
ZarrArray last_array = z.openArray(last_path);
String lastPath = (String) datasets.get(datasets.size() - 1).get("path");
ZarrArray lastArray = z.openArray(lastPath);

assert last_array.getShape()[0] < 32;
assert last_array.getShape()[1] < 32;
assert lastArray.getShape()[0] < 32;
assert lastArray.getShape()[1] < 32;
sbesson marked this conversation as resolved.
Show resolved Hide resolved
}

private void checkPlateGroupLayout(Path root, int rowCount, int colCount,
Expand Down