Mercurial > repos > kpbioteam > ewastools
comparison minfi_getm.xml @ 12:1e048d0cda1d draft
Uploaded
author | kpbioteam |
---|---|
date | Fri, 22 Feb 2019 08:13:51 -0500 |
parents | |
children | 20e5954f9dc2 |
comparison
equal
deleted
inserted
replaced
11:7e6f943984b0 | 12:1e048d0cda1d |
---|---|
1 <tool id="minfi_getM" name="minfi Get M" version="@MINFI_VERSION@"> | |
2 <description>returns the Fisher information corresponding to a model and a design</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_m_script' | |
10 ]]> | |
11 </command> | |
12 <configfiles> | |
13 <configfile name="minfi_m_script"><![CDATA[ | |
14 require("minfi", quietly = TRUE) | |
15 MSet <- get(load('$mset')) | |
16 | |
17 m <- getM(MSet) | |
18 | |
19 write.table(m, '$matrix') | |
20 ]]> | |
21 </configfile> | |
22 </configfiles> | |
23 <inputs> | |
24 <param type="data" name="mset" format="rdata" label="MethylSet" help="This class holds preprocessed data for Illumina methylation microarrays, mapped to a genomic | |
25 location."/> | |
26 </inputs> | |
27 <outputs> | |
28 <data name="matrix" format="txt" label="M Value Matrix"/> | |
29 </outputs> | |
30 <tests> | |
31 <test> | |
32 <param name="mset" value="MethylSet.rdata"/> | |
33 <output name="matrix" file="M_Value_Matrix.txt"/> | |
34 </test> | |
35 </tests> | |
36 <help><![CDATA[ | |
37 This tool output M value the logit representation of methylation level ratio based on intensities between methylated and unmethylated alleles in each probed CpG site. | |
38 ]]></help> | |
39 <expand macro="citations" /> | |
40 </tool> | |
41 |