# HG changeset patch # User imgteam # Date 1553792538 14400 # Node ID 3e4231ed875e6d1b7735ee8714fc9c48fba4852d # Parent c4c76f1ebad2da8e52ab47c4e21d6189c5ed3e4f planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/scale_image/ commit aeb095d3a95eff1cda6127a8dd757552c0405a11 diff -r c4c76f1ebad2 -r 3e4231ed875e scale_image.py --- a/scale_image.py Sat Feb 09 14:46:03 2019 -0500 +++ b/scale_image.py Thu Mar 28 13:02:18 2019 -0400 @@ -22,7 +22,6 @@ if ',' in scale: scale = scale[1:-1].split(',') - scale.reverse() scale = [int(i) for i in scale] elif '.' in scale: scale = float(scale) @@ -41,4 +40,4 @@ parser.add_argument('order', type=int, default=1, help='interpolation method') args = parser.parse_args() - scale_image(args.input_file.name, args.out_file.name, args.scale, args.order) \ No newline at end of file + scale_image(args.input_file.name, args.out_file.name, args.scale, args.order) diff -r c4c76f1ebad2 -r 3e4231ed875e scale_image.xml --- a/scale_image.xml Sat Feb 09 14:46:03 2019 -0500 +++ b/scale_image.xml Thu Mar 28 13:02:18 2019 -0400 @@ -1,4 +1,4 @@ - + Scales image scikit-image