Mercurial > repos > kpbioteam > ewastools
annotate minfi_mset.xml @ 75:9c6fbb7d5a2a draft
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
author | kpbioteam |
---|---|
date | Mon, 20 May 2019 07:14:26 -0400 |
parents | 53aaf097238c |
children |
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> | |
75
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
24 </configfiles> |
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
25 <inputs> |
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
26 <param type="data" name="RGChannelSet" format="rdata" label="RGChannelSet" |
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
27 help="These classes represents raw (unprocessed) data from a two color micro array; specifically an Illumina methylation array."/> |
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
28 </inputs> |
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
29 <outputs> |
9 | 30 <data name="MethylSet" format="rdata" label="MethylSet" /> |
75
9c6fbb7d5a2a
planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents:
74
diff
changeset
|
31 </outputs> |
9 | 32 <tests> |
33 <test> | |
34 <param name="RGChannelSet" value="RGChannelSet.rdata"/> | |
35 <output name="MethylSet" file="MethylSet.rdata"/> | |
36 </test> | |
37 </tests> | |
38 <help><![CDATA[ | |
39 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. | |
40 ]]></help> | |
41 <expand macro="citations" /> | |
42 </tool> |