annotate minfi_rset.xml @ 76:fef50103f6b3 draft

planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 945cecdba6528d35c6dfa866f785f182c5dd22ed
author kpbioteam
date Fri, 07 Jun 2019 08:57:26 -0400
parents 9c6fbb7d5a2a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
70
297a0cda5c7b Uploaded
kpbioteam
parents: 4
diff changeset
1 <tool id="minfi_rset" name="Minfi Rset" version="@MINFI_VERSION@">
4
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
2 <description>store Beta values and/or M values</description>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
3 <macros>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
4 <import>macros.xml</import>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
5 </macros>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
6 <expand macro="requirements" />
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
7 <command detect_errors="exit_code">
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
8 <![CDATA[
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
9 Rscript '$read_rset_script'
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
10 ]]>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
11 </command>
75
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
12 <configfiles>
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
13 <configfile name="read_rset_script">
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
14 <![CDATA[
4
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
15 require("minfi", quietly = TRUE)
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
16 MSet <- get(load('$mset'))
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
17
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
18 RSet <- ratioConvert(MSet, what = "both", keepCN = TRUE)
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
19
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
20 save(RSet,file = '$rset')
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
21 ]]> </configfile>
75
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
22 </configfiles>
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
23 <inputs>
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
24 <param type="data" name="mset" format="rdata" label="MethylSet"
9c6fbb7d5a2a planemo upload for repository https://github.com/kpbioteam/ewas_galaxy commit 9ce5c86f66f4a0cb64a1b8f48a2a937268b62064-dirty
kpbioteam
parents: 70
diff changeset
25 help="This class holds preprocessed data for Illumina methylation microarrays, mapped to a genomic location."/>
4
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
26 </inputs>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
27 <outputs>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
28 <data name="rset" format="rdata" label="RatioSet"/>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
29 </outputs>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
30 <tests>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
31 <test>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
32 <param name="mset" value="MethylSet.rdata"/>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
33 <output name="rset" file="RatioSet.rdata"/>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
34 </test>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
35 </tests>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
36 <help><![CDATA[
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
37 RSet class holds preprocessed data for Illumina methylation microarrays. It contains respectively the Beta value matrix, M value matrix and the Copy Number matrix.
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
38 ]]></help>
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
39 <expand macro="citations" />
8a3d5d8a433f Uploaded
kpbioteam
parents:
diff changeset
40 </tool>