comparison saqc_executor.xml @ 0:99e2019c318c draft default tip

planemo upload for repository https://github.com/Helmholtz-UFZ/galaxy-tools/blob/main/tools/saqc/ commit b674325a07b6e964e25cd65967149018dc2671fe
author ufz
date Sat, 16 Aug 2025 11:43:38 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:99e2019c318c
1 <tool name="SaQC executor" id="saqc_executor" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="22.01">
2 <description>quality control for time series</description>
3 <creator>
4 <organization name="Helmholtz Centre for Environmental Research - UFZ, Research Data Management"
5 url ="https://www.ufz.de/index.php?en=45348"/>
6 </creator>
7 <macros>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="requirements"/>
11 <version_command><![CDATA[python -c 'import saqc; print(saqc.__version__)']]></version_command>
12 <command detect_errors="exit_code"><![CDATA[
13 ln -s '$config' config.csv &&
14 #for $i, $d in enumerate($data)
15 ln -s '$d' '${i}.csv' &&
16 #end for
17 saqc -c config.csv
18 #for $i, $d in enumerate($data)
19 -d '${i}.csv'
20 #end for
21 -o output.csv
22 ]]></command>
23 <inputs>
24 <param label="Input Table(s)"
25 argument="--data"
26 type="data"
27 format="csv"
28 multiple="true"
29 optional="false"
30 />
31 <param label="Configuration"
32 argument="--config"
33 type="data"
34 format="txt"
35 optional="false"/>
36 </inputs>
37 <outputs>
38 <data name="output"
39 format="csv"
40 from_work_dir="output.csv"
41 hidden="false"/>
42 </outputs>
43 <tests>
44 <test>
45 <!-- https://rdm-software.pages.ufz.de/saqc/cookbooks/MultivariateFlagging.html -->
46 <param name="data" value="data.csv,maint.csv" ftype="csv"/>
47 <param name="config" value="config.txt" ftype="txt"/>
48 <output name="output" value="out.csv" ftype="csv"/>
49 </test>
50 </tests>
51 <help><![CDATA[
52 This tool runs the SaQC quality control pipeline specified by a config file on the input data.
53 Just upload your data and a config file, and the tool will run the SaQC pipeline on the data.
54 ]]></help>
55 <expand macro="citations"/>
56 </tool>