comparison projective_transformation_points.xml @ 0:ed8a71e13f7b draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/projective_transformation_points/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
author imgteam
date Sat, 09 Feb 2019 14:45:19 -0500
parents
children f1744c5654b9
comparison
equal deleted inserted replaced
-1:000000000000 0:ed8a71e13f7b
1 <tool id="ip_projective_transformation_points" name="Projective Transformation" version="0.0.2">
2 <description>of input points</description>
3 <requirements>
4 <requirement type="package" version="0.14.2">scikit-image</requirement>
5 <requirement type="package" version="0.23.4">pandas</requirement>
6 <requirement type="package" version="1.15.2">numpy</requirement><!--conflict of 1.15.4 with mkl_fft!?-->
7 </requirements>
8 <command>
9 <![CDATA[
10 python '$__tool_directory__/projective_transformation_points.py'
11 '$moving_points'
12 '$warp_matrix'
13 '$out'
14 ]]>
15 </command>
16 <inputs>
17 <param name="moving_points" type="data" format="tabular" label="Moving Points" />
18 <param name="warp_matrix" type= "data" format="tabular" label="Warp Matrix" />
19 </inputs>
20 <outputs>
21 <data format="tabular" name="out" />
22 </outputs>
23 <tests>
24 <test>
25 <param name="moving_points" value="points_tsv.tsv" />
26 <param name="warp_matrix" value="warp_matrix.tsv" />
27 <output name="out" value="out.tsv" ftype="tabular" />
28 </test>
29 </tests>
30 <help>
31 **What it does**
32
33 This tool performs a projective transformation of the input (moving) points.
34 </help>
35 <citations>
36 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
37 </citations>
38 </tool>