comparison curl_post.xml @ 0:9e9a41b6c153 draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/curl_post commit 42d972afdd700fccae1017c06efbfd06b9c96791
author thomaswollmann
date Mon, 07 Jan 2019 08:37:19 -0500
parents
children 9e285fe716f9
comparison
equal deleted inserted replaced
-1:000000000000 0:9e9a41b6c153
1 <?xml version="1.0"?>
2 <tool name="cURL POST" id="curl_post" version="0.0.2">
3 <description>send cURL POST</description>
4 <requirements>
5 <requirement type="package" version="7.62.0">curl</requirement>
6 </requirements>
7 <command><![CDATA[curl -X POST -s '$url' --data-binary '$input' > '$output' ]]></command>
8 <inputs>
9 <param name="url" size="30" type="text" value="" label="URL"/>
10 <param name="input" type="data" format="data" label="Source file"/>
11 </inputs>
12 <outputs>
13 <data name="output" format="txt" />
14 </outputs>
15 <tests>
16 <test>
17 <param name="input" value="sample_seg.tif"/>
18 <param name="url" value="https://galaxyproject.org"/><!--what url can be used here?-->
19 <output name="output" value="curl.txt" ftype="txt"/>
20 </test>
21 </tests>
22 <help>Uses cURL to send a file via POST.</help>
23 <citations>
24 <citation type="doi">10.7717/peerj.453</citation>
25 </citations>
26 </tool>