diff jython_script.py @ 7:be709f819445 draft

planemo upload commit 7195716d447effc5bc32154279de4b84369eccdb-dirty
author iuc
date Fri, 19 Jun 2015 16:57:16 -0400
parents 7a96d686d380
children
line wrap: on
line diff
--- a/jython_script.py	Tue Jun 09 15:52:46 2015 -0400
+++ b/jython_script.py	Fri Jun 19 16:57:16 2015 -0400
@@ -1,5 +1,5 @@
 import sys
-import imagej2_base_utils
+import jython_utils
 from ij import IJ
 
 # Fiji Jython interpreter implements Python 2.5 which does not
@@ -23,30 +23,15 @@
     target_datatype = sys.argv[ -3 ]
     target_path = sys.argv[ -2 ]
 
-def convert_before_saving_as_tiff( registered_image ):
-    # The bUnwarpJ macro produces tiff image stacks consisting of 3
-    # slices which can be viewed in ImageJ.  The 3 slices are::
-    # 1) the registered image, 2) the target image and 3) the black/white
-    # warp image.  Galaxy supports only single-layered images, so we have
-    # to convert the image to something other than tiff so that slices are
-    # eliminated and we can then convert back to tiff for saving.  This is
-    # kind of a hack - there is probably a way to do this without converting
-    # twice.  I messed around with the the ImageJ getSlice() method, but
-    # couldn't get it to produce what is needed here.
-    tmp_dir = imagej2_base_utils.get_temp_dir()
-    tmp_out_png_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'png' )
-    IJ.saveAs( registered_image, 'png', tmp_out_png_path )
-    return IJ.openImage( tmp_out_png_path )
-
 # Save the Registered Source Image.
 registered_source_image = IJ.openImage( source_tiff_path )
 if source_datatype == 'tiff':
-    registered_source_image = convert_before_saving_as_tiff( registered_source_image )
+    registered_source_image = jython_utils.convert_before_saving_as_tiff( registered_source_image )
 IJ.saveAs( registered_source_image, source_datatype, source_path )
 
 if not mono:
     # Save the Registered Target Image.
     registered_target_image = IJ.openImage( target_tiff_path )
     if target_datatype == 'tiff':
-        registered_target_image = convert_before_saving_as_tiff( registered_target_image )
+        registered_target_image = jython_utils.convert_before_saving_as_tiff( registered_target_image )
     IJ.saveAs( registered_target_image, target_datatype, target_path )