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

Uploaded
author testtool
date Mon, 12 Jun 2017 11:09:33 -0400
parents 3735f4bd0a2d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
2 <tool id="findDMR" name="findDMR" version="1.20.0">
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
3 <requirements>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
4 <requirement type="package" version="1.20.0">bioconductor-minfi</requirement>
12
083895dbc289 Uploaded
testtool
parents: 10
diff changeset
5 </requirements>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
6 <stdio>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
7 <exit_code range="1:" />
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
8 </stdio>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
9 <command> Rscript $__tool_directory__/findDMR.R "$input1" "$input2" "$cutoff" "$B" "$pickCutoffQ" "$output1" "$output2"</command>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
10 <inputs>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
11 <param format="RDdata" name="input1" type="data" label="Genomic Ratio Set" help="e.g. 'GRsetFromGEO tool output'"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
12 <param format="csv" name="input2" type="data" label="Phenotype Table"
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
13 help="e.g.'ID Phenotype
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
14 GSM1255789 OLD
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
15 GSM1255798 OLD
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
16 GSM1255778 YOUNG'"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
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."/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
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."/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
19 <param name="pickCutoffQ" type="text" value="0.99" label="pickCutoffQ" help="The quantile used for picking the cutoff using the permutation distribution."/>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
20 </inputs>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
21 <outputs>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
22 <data format="text" type="data" name="output1" label="DMR.txt"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
23 <data format="bed" type="data" name="output2" label="DMR.bed"/>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
24 </outputs>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
25 <tests>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
26 <test>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
27 <param name="test">
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
28 <element name="test-data">
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
29 <collection type="data">
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
30 <element name="input1" type="data" format="RData" label="test-data/out.RData"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
31 <element name="input2" type="data" format="csv" label="test-data/OLDvsYOUNG.csv"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
32 <element name="cutoff" value="0.5"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
33 <element name="B" value="0"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
34 <element name="pickCutoffQ" value="0.99"/>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
35 </collection>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
36 </element>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
37 </param>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
38 <output name="output1" type="data" format="text" label="test-data/DMR.txt"/>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
39 <output name="output2" type="data" format="bed" label="test-data/DMR.bed"/>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
40 </test>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
41 </tests>
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
42 <help>
14
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
43 **What it does**
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
44 This R-based tool look for genomic regions that are differentially methylated between two conditions
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
45 **Input**
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
46 GenomicRatioSet object
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
47 **Output**
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
48 Text and BED file containing differentially methylated regions
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
49 </help>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
50 <citations>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
51 <citation type="doi">10.1093/bioinformatics/btu049</citation>
9de797a673ad Uploaded
testtool
parents: 13
diff changeset
52 </citations>
0
ca66a1487d4a Uploaded
testtool
parents:
diff changeset
53 </tool>