Mercurial > repos > ecology > eal_templates
comparison eal_templates.xml @ 0:d4f168043757 draft
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 5c327a780dc58fb954e7b65db6fd413ee3909c84
author | ecology |
---|---|
date | Mon, 04 Dec 2023 21:48:55 +0000 |
parents | |
children | 3b0fa963ae3e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d4f168043757 |
---|---|
1 <tool id="eal_templates" 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__/eal_templates.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> |