Mercurial > repos > thomaswollmann > projective_transformation_points
diff projective_transformation_points.xml @ 0:470fd1c1c10c draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/projective_transformation_points/ commit 787ebcc8daa1834214bc92c201c921c704ef2d1f
author | thomaswollmann |
---|---|
date | Mon, 07 Jan 2019 05:39:27 -0500 (2019-01-07) |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/projective_transformation_points.xml Mon Jan 07 05:39:27 2019 -0500 @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<tool id="ip_projective_transformation_points" name="Projective Transformation Points" version="0.0.2"> + <description>Projective Transformation for Points</description> + <requirements> + <requirement type="package" version="0.14.0">scikit-image</requirement> + <requirement type="package" version="0.23.4">pandas</requirement> + <requirement type="package" version="1.15.2">numpy</requirement><!--conflict of 1.15.4 with mkl_fft!?--> + </requirements> + <command> + <![CDATA[ + python '$__tool_directory__/projective_transformation_points.py' + '$moving_points' + '$warp_matrix' + '$out' + ]]> + </command> + <inputs> + <param name="moving_points" type="data" format="csv" label="Moving Points" /> + <param name="warp_matrix" type= "data" format="csv" label="Warp Matrix" /> + </inputs> + <outputs> + <data format="csv" name="out" /> + </outputs> + <tests> + <test> + <param name="moving_points" value="points_tsv.csv" /> + <param name="warp_matrix" value="warp_matrix.csv" /> + <output name="out" value="out.csv" ftype="csv" /> + </test> + </tests> + <help> +This tool performs a projective transformation of the input (moving) points. + </help> + <citations> + <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> + </citations> +</tool>