annotate coordinates_of_roi.xml @ 0:3cbb8ae57f5b draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
author thomaswollmann
date Wed, 16 Jan 2019 15:34:10 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
1 <?xml version="1.0"?>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
2 <tool name="Coordinates of ROI" id="ia_coordinates_of_roi" version="0.0.3">
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
3 <description>Coordinates of ROI</description>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
4 <requirements>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
5 <requirement type="package" version="0.14.0">scikit-image</requirement>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
6 <requirement type="package" version="0.23.4">pandas</requirement>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
7 </requirements>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
8 <command detect_errors="aggressive">
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
9 <![CDATA[
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
10 python '$__tool_directory__/coordinates_of_roi.py'
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
11 '$im'
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
12 '$pixel_table'
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
13 $offset_x $offset_y
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
14 $white_obj
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
15 --threshold $threshold
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
16 ]]>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
17 </command>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
18 <inputs>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
19 <param name="im" type="data" format="png" label="Source file" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
20 <param name="white_obj" type="boolean" truevalue="--white_obj" falsevalue="" checked="false" label="Set to Yes if object is white and background black, otherwise set to No" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
21 <param name="threshold" type="float" value="0.5" label="Threshold value" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
22 <param name="offset_x" type="integer" value="0" label="Added offset in x direction (=width direction)" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
23 <param name="offset_y" type="integer" value="0" label="Added offset in y direction (=height direction)" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
24 </inputs>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
25 <outputs>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
26 <data format="tabular" name="pixel_table" />
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
27 </outputs>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
28 <tests>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
29 <test>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
30 <param name="im" value="test.png"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
31 <param name="white_obj" value="true"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
32 <output name="pixel_table" value="table.csv" ftype="tabular"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
33 </test>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
34 <test>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
35 <param name="im" value="test.png"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
36 <param name="white_obj" value="true"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
37 <param name="offset_x" value="1"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
38 <param name="offset_y" value="2"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
39 <output name="pixel_table" value="table2.csv" ftype="tabular"/>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
40 </test>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
41 </tests>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
42 <help>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
43 This tool creates a table containing the pixelcoordinates of the Region of Interest (ROI).
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
44 </help>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
45 <citations>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
46 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
47 </citations>
3cbb8ae57f5b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/coordinates_of_roi/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff changeset
48 </tool>