annotate tools/human_genome_variation/linkToGProfile.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="hgv_linkToGProfile" name="g:Profiler" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>tools for functional profiling of gene lists</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <command interpreter="perl">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 linkToGProfile.pl $input $numerical_column $type $out_file1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <param name="input" type="data" format="tabular" label="Dataset" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <param name="numerical_column" type="data_column" data_ref="input" numerical="True" label="Column with identifiers" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <param name="type" label="Identifier type" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <option value="ENTREZGENE_ACC" selected="true">Entrez Gene Acc</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 <option value="MIM_MORBID">OMIM Morbid Map</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <option value="MIM_GENE">OMIM Gene ID</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <option value="AFFY_HUGENE_1_0_ST_V1">AFFY_HUGENE_1_0_ST_V1</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <option value="HGNC_AUTOMATIC_GENE_ACC">HGNC_AUTOMATIC_GENE_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <option value="HGNC_MB001_ACC">HGNC_MB001_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <option value="HGNC_ACC">HGNC_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 <option value="WIKIGENE_ACC">WIKIGENE_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <option value="DBASS5_ACC">DBASS5_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <option value="ILLUMINA_HUMANWG_6_V1">ILLUMINA_HUMANWG_6_V1</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <option value="AFFY_HUEX_1_0_ST_V2">AFFY_HUEX_1_0_ST_V2</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <option value="DBASS3_ACC">DBASS3_ACC</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <data format="html" name="out_file1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <param name="input" ftype="tabular" value="linkToGProfile.tabular" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <param name="numerical_column" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <param name="type" value="ENTREZGENE_ACC" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 <output name="out_file1" file="linkToGProfile_1.out" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 **Dataset formats**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 The input dataset is tabular_ with a column of identifiers.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 The output dataset is html_ with a link to g:Profiler.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 (`Dataset missing?`_)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 .. _tabular: ./static/formatHelp.html#tab
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 .. _html: ./static/formatHelp.html#html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 .. _Dataset missing?: ./static/formatHelp.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 This tool creates a link to the g:GOSt tool (Gene Group Functional
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 Profiling), which is part of the g:Profiler site at the University
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 of Tartu in Estonia. g:GOSt retrieves the most significant Gene
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 Ontology (GO) terms, KEGG and REACTOME pathways, and TRANSFAC motifs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 for a user-specified group of genes, proteins, or microarray probes.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 g:GOSt also allows analysis of ranked or ordered lists of genes,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 visual browsing of GO graph structure, interactive visualization of
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 retrieved results, and many other features. Multiple testing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 corrections are applied to extract only statistically important
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 results.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 The g:GOSt form is pre-filled with gene, protein, or microarray probe
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 IDs from the selected column of a tabular Galaxy dataset. To follow
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 the created link, click on the eye icon when the Galaxy tool has
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 finished running. Once at the g:Profiler site, scroll down to see
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 the g:GOSt results. You can also adjust the options in the g:GOSt
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 form to your liking, or use the row of links between the form and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 the results to run other g:Profiler tools using the same list of IDs.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 **Reference**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 Reimand J, Kull M, Peterson H, Hansen J, Vilo J. (2007) g:Profiler -- a web-based
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 toolset for functional profiling of gene lists from large-scale experiments.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 Nucleic Acids Res. 35(Web Server issue):W193-200. Epub 2007 May 3.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 </tool>