Mercurial > repos > thomaswollmann > 2d_feature_extraction
annotate 2d_feature_extraction.xml @ 0:4d6e6901df43 draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
author | thomaswollmann |
---|---|
date | Wed, 16 Jan 2019 15:32:39 -0500 |
parents | |
children |
rev | line source |
---|---|
0
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
2 <tool name="2D Feature Extraction" id="ip_2d_feature_extraction" version="0.0.8"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
3 <description>Feature Extraction</description> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
4 <requirements> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
5 <requirement type="package" version="0.23.4">pandas</requirement> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
6 <requirement type="package" version="0.14.0">scikit-image</requirement> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
7 <requirement type="package" version="1.15.4">numpy</requirement> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
8 <requirement type="package" version="0.15.1">tifffile</requirement> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
9 </requirements> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
10 <command> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
11 <![CDATA[ |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
12 python '$__tool_directory__/2d_feature_extraction.py' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
13 #if $feature_options['features'] == 'all' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
14 --all |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
15 #else if $feature_options['features'] == 'select' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
16 ${' '.join(str( $feature_options['selected_features'] ).split(','))} |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
17 #end if |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
18 #if $use_raw_option['use_raw'] == 'raw_image' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
19 --raw '$input_raw' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
20 #end if |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
21 '$input_label' '$output' |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
22 ]]> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
23 </command> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
24 <inputs> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
25 <param name="input_label" type="data" format="tiff" label="Label file" /> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
26 <conditional name="use_raw_option"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
27 <param label="Use original image to compute additional features" name="use_raw" type="select"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
28 <option selected="True" value="no_original">No original image</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
29 <option value="raw_image">Use original image</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
30 </param> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
31 <when value="no_original"> </when> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
32 <when value="raw_image"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
33 <param name="input_raw" type="data" format="tiff" label="Original image file" /> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
34 </when> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
35 </conditional> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
36 <conditional name="feature_options"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
37 <param label="Select features to compute" name="features" type="select"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
38 <option selected="True" value="all">All features</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
39 <option value="select">Select features</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
40 </param> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
41 <when value="all"> </when> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
42 <when value="select"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
43 <param name="selected_features" type="select" label="Available features" multiple="true" display="checkboxes"> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
44 <option value="--label">Add label id of label image</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
45 <option value="--patches">Patches (requires original image)</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
46 <option value="--max_intensity">Max Intensity (requires original image)</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
47 <option value="--mean_intensity">Mean Intensity (requires original image)</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
48 <option value="--min_intensity">Minimum Intensity (requires original image)</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
49 <option value="--moments_hu">Moments Hu</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
50 <option value="--centroid">Centroid</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
51 <option value="--bbox">Bounding Box</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
52 <option value="--area">Area</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
53 <option value="--filled_area">Filled Area</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
54 <option value="--convex_area">Convex Area</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
55 <option value="--perimeter">Perimeter</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
56 <option value="--extent">Extent</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
57 <option value="--eccentricity">Eccentricity</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
58 <option value="--equivalent_diameter">Equivalent Diameter</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
59 <option value="--euler_number">Euler Number</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
60 <option value="--inertia_tensor_eigvals">Inertia Tensor Eigenvalues</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
61 <option value="--major_axis_length">Major Axis Length</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
62 <option value="--minor_axis_length">Minor Axis Length</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
63 <option value="--orientation">Orientation</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
64 <option value="--solidity">Solidity</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
65 <option value="--moments">Moments</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
66 <option value="--convexity">Convexity</option> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
67 </param> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
68 </when> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
69 </conditional> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
70 </inputs> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
71 <outputs> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
72 <data format="tabular" name="output" /> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
73 </outputs> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
74 <tests> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
75 <test> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
76 <param name="input_label" value="input.tiff"/> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
77 <param name="features" value="select"/> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
78 <param name="selected_features" value="--area"/> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
79 <output name="output" ftype="tabular" value="out.csv"/> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
80 </test> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
81 </tests> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
82 <help> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
83 This tool computes several features of a 2D label image and optionally more features using the original image. |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
84 </help> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
85 <citations> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
86 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
87 </citations> |
4d6e6901df43
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_feature_extraction/ commit d93e1dd276027cfc3fb518236110395a23d96f66
thomaswollmann
parents:
diff
changeset
|
88 </tool> |