diff detection_viz.xml @ 0:3f738d5d91bf draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/detection_viz/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
author imgteam
date Sat, 09 Feb 2019 14:35:39 -0500
parents
children ec1ca4d62192
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/detection_viz.xml	Sat Feb 09 14:35:39 2019 -0500
@@ -0,0 +1,38 @@
+<tool id="ip_detection_viz" name="Detection Visualization" version="0.1">
+    <description>Detection Visualization</description>
+    <requirements>
+        <requirement type="package" version="0.14.2">scikit-image</requirement>
+      <requirement type="package" version="3.0.2">matplotlib</requirement>
+    </requirements>
+    <command>
+        <![CDATA[
+        python '$__tool_directory__/detection_viz.py' '$input' '$output' 
+        --stroke_size $thickness --circle_radius $circle_radius $tp $fn $fp
+        ]]>
+    </command>
+    <inputs>
+        <param name="input" type="data" format="tiff,png,jpg,bmp" label="Binary Image File"/>
+        <param argument="--tp" type="boolean" checked="false" falsevalue="" truevalue="--tp"/>
+        <param argument="--fn" type="boolean" checked="false" falsevalue="" truevalue="--fn"/>
+        <param argument="--fp" type="boolean" checked="false" falsevalue="" truevalue="--fp"/>
+        <param name="thickness" type="float" value="3.0" label="Stroke thickness"/>
+        <param name="circle_radius" type="float" value="50.0" label="Circle radius"/>
+    </inputs>
+    <outputs>
+        <data format="png" name="output"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="input" value="sample.png"/>
+            <output name="output" value="out.png" ftype="png"/>
+        </test>
+    </tests>
+    <help>
+    **What it does**
+
+    Draws circles of different colors around detected true positives, false negatives and false positives.
+    </help>
+    <citations>
+        <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
+    </citations>
+</tool>