0
|
1 <tool id="ipm_date_interval" name="Extract date interval" version="1.1.0">
|
|
2 <description>from insect phenology model data</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.4.4">r-optparse</requirement>
|
1
|
5 <requirement type="package" version="1.10.4">r-data.table</requirement>
|
0
|
6 </requirements>
|
|
7 <command detect_errors="exit_code"><![CDATA[
|
|
8 #import os
|
|
9 #set input_dir = 'input_dir'
|
|
10 #set output_data_dir = "output_data_dir"
|
|
11 #set output_plots_dir = "output_plots_dir"
|
|
12 #set error_file = $os.path.join($output_data_dir, "04_combined_generations.csv")
|
|
13 mkdir $input_dir &&
|
|
14 mkdir output_data_dir &&
|
|
15 mkdir output_plots_dir &&
|
|
16 #for $i in $input:
|
|
17 #set filename = $i.file_name
|
|
18 #set name = $i.name
|
|
19 ln -s $filename $input_dir/$name &&
|
|
20 #end for
|
|
21 Rscript '$__tool_directory__/extract_ipm_date_interval.R'
|
|
22 --end_date '$end_date'
|
|
23 --input_dir '$input_dir'
|
|
24 --plot_std_error $plot_std_error
|
|
25 --script_dir '$__tool_directory__'
|
|
26 --start_date '$start_date'
|
|
27 &>ipm_log.txt;
|
|
28 if [[ $? -ne 0 ]]; then
|
|
29 cp ipm_log.txt '$error_file';
|
|
30 exit 1;
|
|
31 fi]]></command>
|
|
32 <inputs>
|
|
33 <param name="input" type="data_collection" format="csv" collection_type="list" label="Insect phenology model data files" />
|
|
34 <param name="start_date" type="text" value="" label="Start date" help="Format must be yyyy-mm-dd">
|
|
35 <validator type="expression" message="Date must have the format yyyy-mm-dd">len(value.split('-')[0])==4 and int(value.split('-')[0]) and len(value.split('-')[1])==2 and int(value.split('-')[1]) and len(value.split('-')[2])==2 and int(value.split('-')[2])</validator>
|
|
36 </param>
|
|
37 <param name="end_date" type="text" value="" label="End date" help="Format must be yyyy-mm-dd">
|
|
38 <validator type="expression" message="Date must have the format yyyy-mm-dd">len(value.split('-')[0])==4 and int(value.split('-')[0]) and len(value.split('-')[1])==2 and int(value.split('-')[1]) and len(value.split('-')[2])==2 and int(value.split('-')[2])</validator>
|
|
39 </param>
|
|
40 <param name="plot_std_error" type="select" label="Plot standard error?">
|
|
41 <option value="yes" selected="True">Yes</option>
|
|
42 <option value="no">No</option>
|
|
43 </param>
|
|
44 </inputs>
|
|
45 <outputs>
|
|
46 <collection name="output_data_collection" type="list" label="${tool.name} (data), on ${on_string}">
|
|
47 <discover_datasets pattern="__name__" directory="output_data_dir" format="csv"/>
|
|
48 </collection>
|
|
49 <collection name="output_plots_collection" type="list" label="${tool.name} (plots), on ${on_string}">
|
|
50 <discover_datasets pattern="__name__" directory="output_plots_dir" format="pdf"/>
|
|
51 </collection>
|
|
52 </outputs>
|
|
53 <tests>
|
|
54 <test>
|
|
55 <param name="input">
|
|
56 <collection type="list">
|
|
57 <element name="04_combined_generations.csv"/>
|
|
58 </collection>
|
|
59 </param>
|
|
60 <param name="start_date" value="2017-04-01"/>
|
|
61 <param name="end_date" value="2017-04-15"/>
|
|
62 <output_collection name="output_data_collection" type="list">
|
|
63 <element name="04_combined_generations.csv" file="output_combined6.csv" ftype="csv" compare="contains"/>
|
|
64 </output_collection>
|
|
65 <!--
|
|
66 <output_collection name="output_plots_collection" type="list">
|
|
67 <element name="02_young_nymph_pop.pdf" file="plot.pdf" ftype="pdf" compare="contains"/>
|
|
68 <element name="05_pre-vittelogenic_adult_pop.pdf" file="plot.pdf" ftype="pdf" compare="contains"/>
|
|
69 </output_collection>
|
|
70 -->
|
|
71 </test>
|
|
72 <test>
|
|
73 <param name="input">
|
|
74 <collection type="list">
|
|
75 <element name="04_combined_generations.csv"/>
|
|
76 </collection>
|
|
77 </param>
|
|
78 <param name="start_date" value="2017-01-01"/>
|
|
79 <param name="end_date" value="2017-01-15"/>
|
|
80 <output_collection name="output_data_collection" type="list">
|
|
81 <element name="04_combined_generations.csv" file="output_combined7.csv" ftype="csv" compare="contains"/>
|
|
82 </output_collection>
|
|
83 <!--
|
|
84 <output_collection name="output_plots_collection" type="list">
|
|
85 <element name="02_young_nymph_pop.pdf" file="plot.pdf" ftype="pdf" compare="contains"/>
|
|
86 <element name="05_pre-vittelogenic_adult_pop.pdf" file="plot.pdf" ftype="pdf" compare="contains"/>
|
|
87 </output_collection>
|
|
88 -->
|
|
89 </test>
|
|
90 </tests>
|
|
91 <help>
|
|
92 **What it does**
|
|
93
|
|
94 Provides an agent-based stochastic model expressing stage-specific phenology and population dynamics for an insect species across geographic regions.
|
|
95
|
|
96 -----
|
|
97
|
|
98 **Required options**
|
|
99
|
|
100 * **Plot standard error** - add standard error lines to plot.
|
|
101 </help>
|
|
102 <citations>
|
|
103 <citation type="doi">10.3389/fphys.2016.00165</citation>
|
|
104 <citation type="doi">10.1175/JTECH-D-11-00103.1</citation>
|
|
105 <citation type="doi">10.7289/V5D21VHZ</citation>
|
|
106 </citations>
|
|
107 </tool>
|