comparison minfi_mset.xml @ 0:bb6c8d38fad1 draft default tip

planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 945cecdba6528d35c6dfa866f785f182c5dd22ed
author kpbioteam
date Fri, 07 Jun 2019 14:14:49 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bb6c8d38fad1
1 <tool id="minfi_mset" name="Minfi Mset" version="@MINFI_VERSION@">
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"
27 help="These classes represents raw (unprocessed) data from a two color micro array; specifically an Illumina methylation array."/>
28 </inputs>
29 <outputs>
30 <data name="MethylSet" format="rdata" label="MethylSet" />
31 </outputs>
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>