0
|
1 <tool id="GEOQuery" name="GEOQuery">
|
|
2 <description>GEOQuery wrapper</description>
|
|
3 <requirements>
|
|
4 <container type="docker">sblanck/smat</container>
|
|
5 </requirements>
|
|
6 <command>
|
|
7 /galaxy-tools/stderr_wrapper.py Rscript
|
|
8 /galaxy-tools/transcriptomics/GEOquery/GEOQuery.R
|
|
9 $GEOQueryID
|
|
10 $GEOQueryData
|
|
11 $GEOQueryRData
|
|
12 $conditions
|
|
13 $transformation
|
|
14 </command>
|
|
15
|
|
16 <inputs>
|
|
17 <param name="GEOQueryID" type="text" size="12" optional="false" label="GEOQuery ID" help="">
|
|
18 <validator type="empty_field"/>
|
|
19 </param>
|
|
20 <param name="transformation" type="select" label="log2 transformation">
|
|
21 <option value="auto">auto</option>
|
|
22 <option value="yes">yes</option>
|
|
23 <option value="no">no</option>
|
|
24 </param>
|
|
25 </inputs>
|
|
26
|
|
27 <outputs>
|
|
28 <data format="tabular" name="GEOQueryData" label="GEOQuery Data of ${GEOQueryID}"/>
|
|
29 <data format="cond" name="conditions" label="conditions of ${GEOQueryID}"/>
|
|
30 <data format="rdata" name="GEOQueryRData" label="GEOQuery RData of ${GEOQueryID}"/>
|
|
31 </outputs>
|
|
32 <help>
|
|
33 **What it does**
|
|
34
|
|
35 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.
|
|
36 The .cond file is a text file containing one line per sample in the experiment. Each line is made of 3 columns:
|
|
37
|
|
38 - Sample ID
|
|
39 - Condition of the biological sample
|
|
40 - Description of the biological sample
|
|
41
|
|
42 **Example** of .cond file
|
|
43 ::
|
|
44
|
|
45 Sample ID Condition Description
|
|
46 GSM80460 series of 16 tumors GSM80460 OSCE-2T SERIES OF 16 TUMORS
|
|
47 GSM80461 series of 16 tumors GSM80461 OSCE-4T Series of 16 Tumors
|
|
48 GSM80462 series of 16 tumors GSM80462 OSCE-6T Series of 16 Tumors
|
|
49 GSM80476 series of 4 normals GSM80476 OSCE-2N Series of 4 Normals
|
|
50 GSM80477 series of 4 normals GSM80477 OSCE-9N Series of 4 Normals
|
|
51
|
|
52 **Results**
|
|
53
|
|
54 - Rdata object containing data for further analysis
|
|
55 - Condition (.cond) file summarizing conditions of the experiment
|
|
56 - Tabular (.txt) file containing expression data for each sample
|
|
57
|
|
58
|
|
59 </help>
|
|
60
|
|
61
|
|
62 </tool>
|