Skip to content

Commit

Permalink
fix first acquisition time
Browse files Browse the repository at this point in the history
  • Loading branch information
lldelisle committed Dec 19, 2023
1 parent 15b8c2c commit 11ff67c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def process_well(baseDir, input_wellId, n_image_per_well){ //, perform_bc, media
}
if (dateTime_ref != null) {
first_acq_date = dateTime_ref.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))
first_acq_time = dateTime_ref.format(DateTimeFormatter.ofPattern("HH:MM:SS"))
first_acq_time = dateTime_ref.format(DateTimeFormatter.ofPattern("HH:mm:ss"))
for (int ti = 2; ti<= nT; ti++) {
// Process each frame starting at 2
single_channel_imp.setSlice(ti)
Expand Down

0 comments on commit 11ff67c

Please sign in to comment.