Mercurial > repos > kpbioteam > ewastools
annotate minfi_mset.xml @ 74:53aaf097238c draft
planemo upload commit b4d745c28290bce5c7653886d70a63b001aaab19-dirty
author | kpbioteam |
---|---|
date | Thu, 16 May 2019 08:56:35 -0400 |
parents | 3511473319c2 |
children | 9c6fbb7d5a2a |
rev | line source |
---|---|
74
53aaf097238c
planemo upload commit b4d745c28290bce5c7653886d70a63b001aaab19-dirty
kpbioteam
parents:
9
diff
changeset
|
1 <tool id="minfi_mset" name="Minfi Mset" version="@MINFI_VERSION@"> |
9 | 2 <description>Create objects contains CpGs signals</description> |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <command detect_errors="exit_code"> | |
8 <![CDATA[ | |
9 Rscript '$minfi_mset_script' | |
10 ]]> | |
11 </command> | |
12 <configfiles> | |
13 <configfile name="minfi_mset_script"><![CDATA[ | |
14 require("minfi", quietly = TRUE) | |
15 | |
16 RGSet <- get(load('$RGChannelSet')) | |
17 | |
18 MSet <- preprocessRaw(RGSet) | |
19 | |
20 save(MSet,file = '$MethylSet') | |
21 | |
22 ]]> | |
23 </configfile> | |
24 </configfiles> | |
25 <inputs> | |
26 <param type="data" name="RGChannelSet" format="rdata" label="RGChannelSet" help="These classes represents raw (unprocessed) data from a two color micro array; specifically an Illumina methylation array."/> | |
27 </inputs> | |
28 <outputs> | |
29 <data name="MethylSet" format="rdata" label="MethylSet" /> | |
30 </outputs> | |
31 <tests> | |
32 <test> | |
33 <param name="RGChannelSet" value="RGChannelSet.rdata"/> | |
34 <output name="MethylSet" file="MethylSet.rdata"/> | |
35 </test> | |
36 </tests> | |
37 <help><![CDATA[ | |
38 This tool is transforming a class representing raw (unprocessed) data from a two color micro array - RGChannelSet into a class holding preprocessed data for Illumina methylation microarrays, mapped to genomic location - MethylSet. | |
39 ]]></help> | |
40 <expand macro="citations" /> | |
41 </tool> |