view minfi_getm.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 20e5954f9dc2
children
line wrap: on
line source

<tool id="minfi_getM" name="Minfi Get M" version="@MINFI_VERSION@">
    <description>returns the Fisher information corresponding to a model and a design</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="exit_code">
    <![CDATA[
     Rscript '$minfi_m_script'
    ]]>
    </command>
    <configfiles>
    <configfile name="minfi_m_script"><![CDATA[
require("minfi", quietly = TRUE)
MSet <- get(load('$mset'))

m <- getM(MSet)

write.table(m, '$matrix')
 ]]> 
    </configfile>
    </configfiles>  
    <inputs>
        <param type="data" name="mset" format="rdata" label="MethylSet"
            help="This class holds preprocessed data for Illumina methylation microarrays, mapped to a genomic location."/>
    </inputs>
    <outputs>
        <data name="matrix" format="txt" label="M Value Matrix"/>
    </outputs>
    <tests>
        <test>
            <param name="mset" value="MethylSet.rdata"/>
            <output name="matrix" file="M_Value_Matrix.txt"/>
        </test>
    </tests>
    <help><![CDATA[
        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.
    ]]></help>
    <expand macro="citations" />
</tool>