13
|
1 <tool id="qualityControl" name="qualityControl" version="1.0.0">
|
|
2 <description>perform QC on a dataset</description>
|
|
3 <command interpreter="Rscript">
|
|
4 qualityControl.R $config > ${reportPath}
|
|
5 </command>
|
|
6
|
|
7 <inputs>
|
|
8 <param name="genotype" type="data"
|
|
9 label="genotype data" help="genotype must be a .csv"
|
|
10 />
|
|
11
|
|
12 <param name="plinkFreq" type="data"
|
|
13 label="plink files with frequencies" help=""
|
|
14 />
|
|
15
|
|
16 <param name="plinkHWE" type="data"
|
|
17 label="plink files with HardyWeinberg statistics" help=""
|
|
18 />
|
|
19 </inputs>
|
|
20
|
|
21
|
|
22 <configfiles>
|
|
23 <configfile name="config">
|
|
24 ## Desc: this file is sourced in encode wrapper script
|
|
25 ## as means to pass all galaxy params to R
|
|
26 "${genotype}" -> genotype
|
|
27 "${plinkFreq}" -> plinkFreq
|
|
28 "${plinkHWE}" -> plinkHWE
|
|
29 "${reportPath}" -> out
|
|
30
|
|
31 </configfile>
|
|
32 </configfiles>
|
|
33
|
|
34 <outputs>
|
|
35 <data format="plain text" name="reportPath" label="QC report" />
|
|
36 </outputs>
|
|
37
|
|
38 <help>
|
|
39 make a report with dimension of the dataset, MAF, Hardy-Weinberg test
|
|
40 </help>
|
|
41 </tool> |