Mercurial > repos > iuc > gprofiler_convert
annotate gprofiler_convert.xml @ 1:8ee097f1763d draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit 4d4576623a85b58137f9e8c5a7747cb2f484c8b6"
author | iuc |
---|---|
date | Mon, 18 Nov 2019 17:54:25 -0500 |
parents | e219aca2f9fc |
children |
rev | line source |
---|---|
0
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
2 <tool id="gprofiler_convert" name="gProfiler Convert" version="@VERSION@"> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
3 <description>converts between various types of namespaces</description> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
4 <macros> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
6 </macros> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"></expand> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
8 <expand macro="version_command" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
9 <command detect_errors="aggressive">Rscript $script_file</command> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
10 <configfiles> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
11 <configfile name="script_file"><![CDATA[ |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
12 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
13 options( show.error.messages=F, error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } ) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
14 loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8") |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
15 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
16 suppressPackageStartupMessages({ |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
17 library("gprofiler2") |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
18 }) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
19 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
20 set_user_agent(paste(get_user_agent(), "galaxy")) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
21 sessionInfo() |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
22 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
23 #if $tool_settings.base_url |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
24 set_base_url('${tool_settings.base_url}') |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
25 #end if |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
26 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
27 #if $max |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
28 mthreshold <- $max |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
29 #else |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
30 mthreshold = Inf |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
31 #end if |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
32 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
33 query <- scan('${input.file_name}', character(), quote = "") |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
34 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
35 response <- gconvert( query |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
36 , organism = '${organism.organism}' |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
37 , target = '${target_ns}' |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
38 , numeric_ns = '${numeric_ns}' |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
39 , mthreshold = mthreshold |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
40 , filter_na = ${filter_na} |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
41 ) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
42 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
43 output <- response |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
44 output.colnames = colnames(output) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
45 write.table(output, file='${output}', quote=FALSE, sep='\t', row.names = FALSE, col.names = output.colnames) |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
46 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
47 ]]></configfile> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
48 </configfiles> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
49 <inputs> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
50 <expand macro="input" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
51 <expand macro="organism" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
52 <param name="target_ns" type="text" value="ENSG" optional="true" label="Target namespace" help="E.g., ENSG, ENTREZGENE, UNIPROT_GN, REACTOME, WIKIGENE. Check the “Resources” section below for the complete list of supported namespaces." /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
53 <param name="numeric_ns" type="text" value="" optional="true" label="Numeric IDs treated as" help="The prefix for fully numeric IDs. Check the “Resources” section below for the complete list of supported namespaces (including numeric). E.g., ENTREZGENE_ACC, WIKIGENE_ACC." /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
54 <param name="max" type="integer" value="" optional="true" label="Maximum number of results per initial identifier to show" help="Shows all by default." /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
55 <expand macro="filter_na" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
56 <expand macro="tool_settings"></expand> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
57 </inputs> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
58 <outputs> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
59 <data name="output" format="tabular" label="${tool.name} on ${on_string}" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
60 </outputs> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
61 <tests> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
62 <test> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
63 <param name="input" ftype="txt" value="example_query.txt" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
64 <param name="base_url" value="http://biit.cs.ut.ee/gprofiler_archive3/e94_eg41_p11" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
65 <output name="output" ftype="tabular" file="example_convert_results.txt" sort="true" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
66 </test> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
67 <test> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
68 <param name="input" ftype="txt" value="example_query_2.txt" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
69 <param name="base_url" value="http://biit.cs.ut.ee/gprofiler_archive3/e94_eg41_p11" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
70 <conditional name="organism"> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
71 <param name="organism" value="mmusculus" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
72 </conditional> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
73 <param name="target_ns" value="EMBL" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
74 <param name="numeric_ns" value="WIKIGENE_ACC" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
75 <param name="max" value="1" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
76 <param name="filter_na" value="T" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
77 <output name="output" ftype="tabular" file="example_convert_results_2.txt" sort="true" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
78 </test> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
79 </tests> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
80 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
81 <help><![CDATA[ |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
82 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
83 **What it does** |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
84 This tool wraps gprofiler2 R package which performs a request to g:Profiler g:Convert tool through its API. |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
85 g:Profiler g:Convert uses the information in Ensembl databases to handle hundreds of types of identifiers for |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
86 genes, proteins, transcripts, microarray probesets, etc, for many species, experimental platforms and |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
87 biological databases. The input is flexible: it accepts a mixed list of IDs and recognises their types |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
88 automatically. It can also serve as a service to get all genes belonging to a particular functional category. |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
89 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
90 ----- |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
91 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
92 @REFERENCES@ |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
93 |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
94 ]]></help> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
95 <expand macro="citations" /> |
e219aca2f9fc
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ commit ed9b518a6aaf6a5aada47e39c039f6936e41b290"
iuc
parents:
diff
changeset
|
96 </tool> |