view 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
line wrap: on
line source

<tool id="minfi_rset" name="Minfi Rset" version="@MINFI_VERSION@">
    <description>store Beta values and/or M values</description>
      <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="exit_code">
    <![CDATA[
        Rscript '$read_rset_script'
     ]]>
   </command>
    <configfiles>
        <configfile name="read_rset_script">
<![CDATA[
require("minfi", quietly = TRUE)
MSet <- get(load('$mset'))

RSet <- ratioConvert(MSet, what = "both", keepCN = TRUE)

save(RSet,file = '$rset')  
    ]]> </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="rset" format="rdata" label="RatioSet"/>
    </outputs>
    <tests>
        <test>
            <param name="mset" value="MethylSet.rdata"/>
            <output name="rset" file="RatioSet.rdata"/>
        </test>
    </tests>
    <help><![CDATA[
        RSet class holds preprocessed data for Illumina methylation microarrays. It contains respectively the Beta value matrix, M value matrix and the Copy Number matrix.
    ]]></help>
    <expand macro="citations" />
</tool>