Skip to content

Commit 11dbf1e

Browse files
committed
Release v1.16.0
1 parent acb4d2a commit 11dbf1e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog
33
==========
44

5+
+++++++++
6+
v1.16.0 (17/03/2025)
7+
+++++++++
8+
9+
**Added**
10+
11+
- Endpoint for generating SPA collection reports
12+
513
+++++++++
614
v1.15.0 (10/03/2025)
715
+++++++++

src/pato/crud/collection_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,10 +400,10 @@ def generate_report(collection_id: int):
400400
or class_pc.estimatedResolution > best_class.estimatedResolution
401401
):
402402
best_class = class_pc
403-
best_class_index = i + 1
403+
best_class_index = i
404404
class_3d_table.append(
405405
(
406-
str(i + 2),
406+
str(i + 1),
407407
str(class_pc.particlesPerClass),
408408
str(class_pc.estimatedResolution),
409409
str(class_pc.overallFourierCompleteness),

0 commit comments

Comments
 (0)