2
|
1 <tool id="GEOQuery" name="GEOQuery">
|
|
2 <description>GEOQuery wrapper</description>
|
3
|
3 <stdio>
|
|
4 <exit_code range="1:" />
|
|
5 </stdio>
|
8
|
6 <!--requirements>
|
|
7 <!container type="docker">sblanck/smagexp</container>
|
2
|
8 <requirement type="package" version="0.1.0">r-smagexp</requirement>
|
8
|
9 </requirements-->
|
3
|
10 <command>
|
2
|
11 <![CDATA[
|
3
|
12 Rscript --vanilla
|
2
|
13 ${__tool_directory__}/GEOQuery.R
|
3
|
14 --id ${GEOQueryID}
|
|
15 --transformation ${transformation}
|
|
16 --data ${GEOQueryData}
|
|
17 --rdata ${GEOQueryRData}
|
|
18 --conditions ${conditions}
|
2
|
19 ]]>
|
|
20 </command>
|
|
21
|
|
22 <inputs>
|
|
23 <param name="GEOQueryID" type="text" size="12" optional="false" label="GEOQuery ID" help="">
|
|
24 <validator type="empty_field"/>
|
|
25 </param>
|
|
26 <param name="transformation" type="select" label="log2 transformation">
|
|
27 <option value="auto">auto</option>
|
|
28 <option value="yes">yes</option>
|
|
29 <option value="no">no</option>
|
|
30 </param>
|
|
31 </inputs>
|
|
32
|
|
33 <outputs>
|
|
34 <data format="tabular" name="GEOQueryData" label="GEOQuery Data of ${GEOQueryID}"/>
|
|
35 <data format="cond" name="conditions" label="conditions of ${GEOQueryID}"/>
|
|
36 <data format="rdata" name="GEOQueryRData" label="GEOQuery RData of ${GEOQueryID}"/>
|
|
37 </outputs>
|
|
38 <help>
|
|
39 <![CDATA[
|
|
40 **What it does**
|
|
41
|
|
42 This tool fetches microarray data directly from GEO database, based on the GEOQuery R package. Given a GSE accession ID, it returns an Rdata object containing the data and a text file (.cond file) summarizing the conditions of the experiment.
|
|
43 The .cond file is a text file containing one line per sample in the experiment. Each line is made of 3 columns:
|
|
44
|
|
45 - Sample ID
|
|
46 - Condition of the biological sample
|
|
47 - Description of the biological sample
|
|
48
|
|
49 **Example** of .cond file
|
|
50 ::
|
|
51
|
|
52 GSM80460 series of 16 tumors GSM80460 OSCE-2T SERIES OF 16 TUMORS
|
|
53 GSM80461 series of 16 tumors GSM80461 OSCE-4T Series of 16 Tumors
|
|
54 GSM80462 series of 16 tumors GSM80462 OSCE-6T Series of 16 Tumors
|
|
55 GSM80476 series of 4 normals GSM80476 OSCE-2N Series of 4 Normals
|
|
56 GSM80477 series of 4 normals GSM80477 OSCE-9N Series of 4 Normals
|
|
57
|
|
58 **Results**
|
|
59
|
|
60 - Rdata object containing data for further analysis
|
|
61 - Condition (.cond) file summarizing conditions of the experiment
|
|
62 - Tabular (.txt) file containing expression data for each sample
|
|
63 ]]>
|
|
64
|
|
65 </help>
|
|
66
|
|
67
|
|
68 </tool>
|