Mercurial > repos > ecology > templates1
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates1.xml Sat Dec 02 01:50:16 2023 +0000 @@ -0,0 +1,52 @@ +<tool id="templates1" name="Make templates" version="0.1.0+galaxy0" profile="22.05"> + <description>for core features of a data package for EML metadata creation</description> + <requirements> + <requirement type="package" version="4.3.1">r-base</requirement> + <requirement type="package" version="3.5.5">r-emlassemblyline</requirement> + </requirements> + <command detect_errors="exit_code"><![CDATA[ + + Rscript + '$__tool_directory__/templates1.R' + '$license' + '$file_type' + + ]]></command> + <inputs> + <param name="license" type="select" label="Under what license are your data?"> + <option value="CC0">CC0</option> + <option value="CCBY">CCBY</option> + </param> + <param name="file_type" type="select" label="What type of file do you want for templates?"> + <option value=".txt">Text</option> + <option value=".docx">MS Word</option> + <option value=".md">Markdown</option> + </param> + + </inputs> + <outputs> + <collection name="output" type="list" label="Templates"> + <discover_datasets pattern="__name_and_ext__"/> + </collection> + </outputs> + <tests> + <test> + <param name="license" value="CCBY"/> + <param name="file_type" value=".txt"/> + <output_collection name='output' type = "list" count="6"/> + </test> + </tests> + <help><![CDATA[ + +**What it does?** +-------------------- + +This tool produce templates for core features of a data package for EML metadata. +This tool can be used before of the make eml tool. + +**How to use it?** +-------------------- +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. + + ]]></help> +</tool>