15
|
1 <tool id="GetGEO" name="GRsetFromGEO" version="0.1.0">
|
|
2 <requirements>
|
|
3 <requirement type="package" version="1.20.0">bioconductor-minfi</requirement>
|
|
4 </requirements>
|
|
5 <stdio>
|
|
6 <exit_code range="1:" />
|
|
7 </stdio>
|
|
8 <command><![CDATA[
|
|
9 Rscript $__tool_directory__/GRsetFromGEO.R -a "$input" > "$output"
|
|
10 ]]></command>
|
|
11 <inputs>
|
|
12 <param type="text" name="input" value="" label="Enter GSE ID." help="e.g. 'GSE51547'"/>
|
|
13 </inputs>
|
|
14 <outputs>
|
|
15 <data name="output" format="RDdata" label="GRsetFromGEO.RData"/>
|
|
16 </outputs>
|
|
17 <tests>
|
|
18 <test>
|
|
19 <param name="input" value="GSE51547"/>
|
|
20 <output name="output" file="test-data/out.RData"/>
|
5
|
21 </test>
|
|
22 </tests>
|
15
|
23 <help>**What it does**
|
|
24 This R-based tool downloads data from GEO using getGEO from the GEOquery package and then returns a GenomicRatioSet object
|
|
25 **Input**
|
|
26 The GSE ID of the dataset to be downloaded from GEO "e.g. 'GSE51547'"
|
|
27 **Output**
|
|
28 GenomicRatioSet object</help>
|
|
29 <citations>
|
|
30 <citation type="doi">10.1093/bioinformatics/btu049</citation>
|
|
31 </citations>
|
5
|
32 </tool>
|