Skip to content

Commit

Permalink
fix maxproj again
Browse files Browse the repository at this point in the history
  • Loading branch information
lldelisle committed Dec 13, 2024
1 parent 39c8ae7 commit 28c2a52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions tools/max_projections_stack_and_upload_omero/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 20241213.1

- Fixed a forgotten nT

## 20241213

- Remove unused input plateName in wrapper.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<tool id="max_projections_stack_and_upload_omero" name="Stack MaxProj" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="BSD-3">
<description>And upload to omero</description>
<macros>
<token name="@TOOL_VERSION@">20241213</token>
<token name="@TOOL_VERSION@">20241213.1</token>
<token name="@VERSION_SUFFIX@">0</token>
</macros>
<requirements>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/

// Version number = date of last modif
VERSION = "20241213"
VERSION = "20241213.1"

/**
* *****************************************************************************************************************
Expand Down Expand Up @@ -140,7 +140,7 @@ try {
ImagePlus merged_imps = Concatenator.run(current_images as ImagePlus[])
// Re-order to make a multi-channel, time-lapse image
ImagePlus final_imp
if (channels.size() == 1 && nT == 1) {
if (channels.size() == 1 && ref_nT == 1) {
final_imp = merged_imps
} else {
try {
Expand Down

0 comments on commit 28c2a52

Please sign in to comment.