comparison geo_cov_template.xml @ 2:0fe3b8bd9d8b draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit f00c48e2a16ba6154e6c1aa50330586eefb13a32
author ecology
date Sat, 23 Dec 2023 20:39:46 +0000
parents dc2dfad1627b
children d53b708cb348
comparison
equal deleted inserted replaced
1:4f5816b57c13 2:0fe3b8bd9d8b
1 <tool id="geo_cov_template" name="Make geographic coverage template" version="0.1.0+galaxy0" profile="22.05"> 1 <tool id="geo_cov_template" name="Make geographic coverage template" version="0.1.0+galaxy0" profile="22.05">
2 <description>for EML metadata creation</description> 2 <description>for EML metadata creation</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="4.3.1">r-base</requirement> 4 <requirement type="package" version="4.3.1">r-base</requirement>
5 <requirement type="package" version="3.5.5">r-emlassemblyline</requirement> 5 <requirement type="package" version="3.5.5">r-emlassemblyline</requirement>
6 </requirements> 6 </requirements>
7 <command detect_errors="exit_code"><![CDATA[ 7 <command detect_errors="exit_code"><![CDATA[
8 8
26 <param name="long_col" type="data_column" label="What column of your table contains longitude coordinates in decimal degrees ?" data_ref="inputdata"/> 26 <param name="long_col" type="data_column" label="What column of your table contains longitude coordinates in decimal degrees ?" data_ref="inputdata"/>
27 <param name="site_col" type="data_column" label="What column of your table contains site names ?" data_ref="inputdata"/> 27 <param name="site_col" type="data_column" label="What column of your table contains site names ?" data_ref="inputdata"/>
28 <param name="empty" type="boolean" label="Write an empty template file ?" /> 28 <param name="empty" type="boolean" label="Write an empty template file ?" />
29 </inputs> 29 </inputs>
30 <outputs> 30 <outputs>
31 <data name="output" from_work_dir="geographic_coverage.txt" format="txt" label="geographic coverage template"/> 31 <data name="output" from_work_dir="geographic_coverage.txt" format="txt" label="geographic_coverage.txt"/>
32 </outputs> 32 </outputs>
33 <tests> 33 <tests>
34 <test> 34 <test>
35 <param name="inputdata" value="test-geocov.tabular"/> 35 <param name="inputdata" value="test-geocov.tabular"/>
36 <param name="lat_col" value="2"/> 36 <param name="lat_col" value="2"/>
43 <help><![CDATA[ 43 <help><![CDATA[
44 44
45 **What it does?** 45 **What it does?**
46 -------------------- 46 --------------------
47 47
48 This tool produce template for EML metadata. It produce templates for geographic coverage. 48 This tool produce template for EML metadata. It produce template for geographic coverage.
49 This tool can be used with the "Make templates for core features of a data package" tool before the "make eml" tool. 49 After that, these files can be edited to add information about your data and then be used in the make eml tool to produce EML metadata.
50 50
51 **How to use it?** 51 **How to use it?**
52 -------------------- 52 --------------------
53 To use this tool, you need to upload a table containing geographic coordinates (the decimal separator must be ".", example below), then select wich column of your table contains latitude, longitude and site names. You can also decide to make an empty geografical coverage templates. 53 To use this tool, you need to upload a table containing geographic coordinates (the decimal separator must be ".", example below), then select wich column of your table contains latitude, longitude and site names. You can also decide to make an empty geografical coverage templates.
54 54