comparison templates1.xml @ 0:e6d531c277f6 draft default tip

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit ea09df299078ff13beda210b36b7edaa6a79c099
author ecology
date Sat, 02 Dec 2023 01:50:16 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e6d531c277f6
1 <tool id="templates1" name="Make templates" version="0.1.0+galaxy0" profile="22.05">
2 <description>for core features of a data package for EML metadata creation</description>
3 <requirements>
4 <requirement type="package" version="4.3.1">r-base</requirement>
5 <requirement type="package" version="3.5.5">r-emlassemblyline</requirement>
6 </requirements>
7 <command detect_errors="exit_code"><![CDATA[
8
9 Rscript
10 '$__tool_directory__/templates1.R'
11 '$license'
12 '$file_type'
13
14 ]]></command>
15 <inputs>
16 <param name="license" type="select" label="Under what license are your data?">
17 <option value="CC0">CC0</option>
18 <option value="CCBY">CCBY</option>
19 </param>
20 <param name="file_type" type="select" label="What type of file do you want for templates?">
21 <option value=".txt">Text</option>
22 <option value=".docx">MS Word</option>
23 <option value=".md">Markdown</option>
24 </param>
25
26 </inputs>
27 <outputs>
28 <collection name="output" type="list" label="Templates">
29 <discover_datasets pattern="__name_and_ext__"/>
30 </collection>
31 </outputs>
32 <tests>
33 <test>
34 <param name="license" value="CCBY"/>
35 <param name="file_type" value=".txt"/>
36 <output_collection name='output' type = "list" count="6"/>
37 </test>
38 </tests>
39 <help><![CDATA[
40
41 **What it does?**
42 --------------------
43
44 This tool produce templates for core features of a data package for EML metadata.
45 This tool can be used before of the make eml tool.
46
47 **How to use it?**
48 --------------------
49 To use this tool, you need to select what type of license are your data under. Then you need to select the type of file you want for your templates.
50
51 ]]></help>
52 </tool>