Mercurial > repos > imgteam > imagej2_bunwarpj_elastic_transform
comparison imagej2_create_image_jython_script.py @ 2:55bf135d6b0c draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 commit 57a0433defa3cbc37ab34fbb0ebcfaeb680db8d5
author | imgteam |
---|---|
date | Sun, 05 Nov 2023 14:26:15 +0000 |
parents | 39b2bc251b2f |
children |
comparison
equal
deleted
inserted
replaced
1:39b2bc251b2f | 2:55bf135d6b0c |
---|---|
6 # provide support for argparse. | 6 # provide support for argparse. |
7 title = sys.argv[-6] | 7 title = sys.argv[-6] |
8 width = int(sys.argv[-5]) | 8 width = int(sys.argv[-5]) |
9 height = int(sys.argv[-4]) | 9 height = int(sys.argv[-4]) |
10 depth = int(sys.argv[-3]) | 10 depth = int(sys.argv[-3]) |
11 type = sys.argv[-2].replace('_', ' ') | 11 type = sys.argv[-2].replace("_", " ") |
12 tmp_image_path = sys.argv[-1] | 12 tmp_image_path = sys.argv[-1] |
13 | 13 |
14 imp = IJ.newImage(title, type, width, height, depth) | 14 imp = IJ.newImage(title, type, width, height, depth) |
15 IJ.save(imp, "%s" % tmp_image_path) | 15 IJ.save(imp, "%s" % tmp_image_path) |