comparison findDMR/findDMR.xml @ 14:9de797a673ad draft default tip

Uploaded
author testtool
date Mon, 12 Jun 2017 11:09:33 -0400
parents 3735f4bd0a2d
children
comparison
equal deleted inserted replaced
13:3735f4bd0a2d 14:9de797a673ad
1 <tool id="findDMR" name="findDMR" version="1.16.2"> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <requirements> 2 <tool id="findDMR" name="findDMR" version="1.20.0">
3 <requirement name="package_r_3_2_1" type="package" version="3.2.1">R</requirement> 3 <requirements>
4 <requirement type="package" version="1.20.0">bioconductor-minfi</requirement>
4 </requirements> 5 </requirements>
5 <stdio> 6 <stdio>
6 <exit_code range="1:" /> 7 <exit_code range="1:" />
7 </stdio> 8 </stdio>
8 <command> Rscript $__tool_directory__/findDMR.R "$input1" "$input2" "$output" </command> 9 <command> Rscript $__tool_directory__/findDMR.R "$input1" "$input2" "$cutoff" "$B" "$pickCutoffQ" "$output1" "$output2"</command>
9 <inputs> 10 <inputs>
10 <param name="input1" type="data" format="Rdata" label="GenomicRatioSet.Rdata" help="e.g. 'GSE51547'"/> 11 <param format="RDdata" name="input1" type="data" label="Genomic Ratio Set" help="e.g. 'GRsetFromGEO tool output'"/>
11 <param name="input2" type="data" format="txt" label="PhenoTab.txt" help="ID and Phenotype table"/> 12 <param format="csv" name="input2" type="data" label="Phenotype Table"
13 help="e.g.'ID Phenotype
14 GSM1255789 OLD
15 GSM1255798 OLD
16 GSM1255778 YOUNG'"/>
17 <param name="cutoff" type="text" value="0.5" label="Cutoff" help="A v. Values of the estimate of the genomic profile above the cutoff or below the negative of the cutoff will be used as candidate regions. It is possible to give two separate values (upper and lower bounds). If one value is given, the lower bound is minus the value."/>
18 <param name="B" type="text" value="0" label="Number of resamples" help="An integer denoting the number of resamples to use when computing null distributions. This defaults to 0. If permutations is supplied that defines the number of permutations/bootstraps and B is ignored."/>
19 <param name="pickCutoffQ" type="text" value="0.99" label="pickCutoffQ" help="The quantile used for picking the cutoff using the permutation distribution."/>
12 </inputs> 20 </inputs>
13 <outputs> 21 <outputs>
14 <data format="txt" name="output" label="findDMR.txt"/> 22 <data format="text" type="data" name="output1" label="DMR.txt"/>
23 <data format="bed" type="data" name="output2" label="DMR.bed"/>
15 </outputs> 24 </outputs>
16 <tests> 25 <tests>
17 <test> 26 <test>
18 <param name="test"> 27 <param name="test">
19 <element name="test-data"/> 28 <element name="test-data">
20 <collection type="data"> 29 <collection type="data">
21 <element format="Rdata" name="input1" label="test-data/GenomicRatioSet.Rdata"/> 30 <element name="input1" type="data" format="RData" label="test-data/out.RData"/>
22 <element format="txt" name="input2" label="test-data/PhenoTab.txt"/> 31 <element name="input2" type="data" format="csv" label="test-data/OLDvsYOUNG.csv"/>
32 <element name="cutoff" value="0.5"/>
33 <element name="B" value="0"/>
34 <element name="pickCutoffQ" value="0.99"/>
23 </collection> 35 </collection>
36 </element>
24 </param> 37 </param>
25 <output format="txt" name="output" label="test-data/findDMR.txt"/> 38 <output name="output1" type="data" format="text" label="test-data/DMR.txt"/>
39 <output name="output2" type="data" format="bed" label="test-data/DMR.bed"/>
26 </test> 40 </test>
27 </tests> 41 </tests>
28 <help> 42 <help>
29 Identify CpGs where methylation is associated with a continuous or categorical phenotype. 43 **What it does**
30 </help> 44 This R-based tool look for genomic regions that are differentially methylated between two conditions
31 <citations> 45 **Input**
32 Aryee, Martin J., et al. "Minfi: a flexible and comprehensive Bioconductor package for the analysis of Infinium DNA methylation microarrays." Bioinformatics 30.10 (2014): 1363-1369. 46 GenomicRatioSet object
33 </citations> 47 **Output**
48 Text and BED file containing differentially methylated regions
49 </help>
50 <citations>
51 <citation type="doi">10.1093/bioinformatics/btu049</citation>
52 </citations>
34 </tool> 53 </tool>