comparison ab-index.xml @ 0:d0ee713d4758 draft default tip

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam commit ffe42225fff8992501b743ebe2c78e50fddc4a4e
author ecology
date Thu, 20 Jun 2019 04:05:06 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d0ee713d4758
1 <tool id="regionalgam_ab_index" name="Abundance index" version="@VERSION@">
2 <description>computation across species, sites and years</description>
3 <macros>
4 <import>regionalgam_macros.xml</import>
5 </macros>
6 <expand macro="rg_r_requirements"/>
7 <command detect_errors="exit_code"><![CDATA[
8 Rscript '$__tool_directory__/ab-index.R'
9 '$__tool_directory__/dennis-gam-initial-functions.R'
10 '$count_file' '$input2'
11 '$output'
12 ]]>
13 </command>
14 <inputs>
15 <expand macro="rg_count_file"/>
16 <param format="tabular" name="input2" type="data" label="Regional expected pattern of abundance" help="Flight curve output, tabular file."/>
17 </inputs>
18 <outputs>
19 <data format="tabular" name="output" from_work_dir="data.index" />
20 </outputs>
21 <tests>
22 <test>
23 <param name="count_file" value="gatekeeper_CM_200320042005"/>
24 <param name="input2" value="s_flight_curve_result.tabular"/>
25 <output name="output" file="s_data_index.tabular"/>
26 </test>
27 </tests>
28 <help><![CDATA[
29 ==========================
30 Compute abundance index
31 ==========================
32
33 This tool is an implementation of the abundance_index function from RegionalGAM package: https://github.com/RetoSchmucki/regionalGAM/
34
35 This function compute the Abundance Index across sites and years from your dataset and the regional flight curve.
36
37 |
38
39 **Outputs**
40
41 The tool returns computed abundance indices in tabular format.
42
43 ]]></help>
44 <expand macro="rg_citation"/>
45 </tool>