annotate permutate_axis.xml @ 0:0bbe34198e24 draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
author imgteam
date Sat, 09 Feb 2019 14:42:29 -0500
parents
children 5b82f2186244
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
1 <tool id="ip_permutate_axis" name="Permutate image" version="0.1">
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
2 <description>along an axis</description>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
3 <requirements>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
4 <requirement type="package" version="0.14.2">scikit-image</requirement>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
5 <requirement type="package" version="1.15.4">numpy</requirement>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
6 </requirements>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
7 <command>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
8 <![CDATA[
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
9 python '$__tool_directory__/permutate_axis.py' '$input' '$output' $permutate --axis $axis
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
10 ]]>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
11 </command>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
12 <inputs>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
13 <param name="input" type="data" format="tiff" label="Binary Image File"/>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
14 <param name="permutate" type="text" value="0,1,2" label="new channel order">
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
15 <validator type="regex" message="Input has to be a sequence of axis, separated by commas">([0-4],)+[0-4]</validator>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
16 </param>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
17 <param name="axis" type="integer" value="0" label="concatenation axis" help="Concatenation axis (0-4)" /><!-- why not have a selection from 0 to 4?-->
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
18 </inputs>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
19 <outputs>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
20 <data format="tiff" name="output"/>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
21 </outputs>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
22 <tests>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
23 <test>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
24 <param name="input" value="galaxyIcon_noText.tif"/>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
25 <output name="output" file="res.tif" ftype="tiff" compare="sim_size"/>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
26 </test>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
27 </tests>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
28 <help>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
29 **What it does**
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
30
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
31 Permutates the image along a specified axis.
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
32 </help>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
33 <citations>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
34 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
35 </citations>
0bbe34198e24 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
imgteam
parents:
diff changeset
36 </tool>