Mercurial > repos > proteore > proteore_reactome
comparison reactome_analysis.xml @ 6:9cc475dcd0f2 draft
planemo upload commit ad5f1c5a1a71d7fa2bc8bac408856aa80b0fc2a3
author | proteore |
---|---|
date | Tue, 18 Dec 2018 10:03:50 -0500 |
parents | 7fbd66f985b7 |
children | 6c95f1b88627 |
comparison
equal
deleted
inserted
replaced
5:7fbd66f985b7 | 6:9cc475dcd0f2 |
---|---|
1 <tool id="reactome_analysis" name="Reactome" version="0.1.0"> | 1 <tool id="reactome_analysis" name="Query Reactome pathway database" version="2018.12.12"> |
2 <description>queries web service and display pathways | 2 <description></description> |
3 </description> | |
4 <requirements> | 3 <requirements> |
5 </requirements> | 4 </requirements> |
6 <stdio> | 5 <stdio> |
7 <exit_code range="1:" /> | 6 <exit_code range="1:" /> |
8 </stdio> | 7 </stdio> |
9 <command><![CDATA[ | 8 <command><![CDATA[ |
9 | |
10 python $__tool_directory__/reactome_analysis.py | |
10 #if $opt.input == "text" | 11 #if $opt.input == "text" |
11 python $__tool_directory__/reactome_analysis.py --json "$opt.list" "list" --output "$output" --trash "$trash" | 12 --json "$opt.list" "list" |
12 #else if $opt.input == "file" | 13 #else if $opt.input == "file" |
13 python $__tool_directory__/reactome_analysis.py --json "$opt.file" "file" $opt.header $opt.ncol --output "$output" --trash "$trash" | 14 --json "$opt.file" "file" "$opt.header" "$opt.ncol" |
14 #end if | 15 #end if |
16 --output "$output" | |
17 --trash "$trash" | |
18 --species "$species" | |
15 | 19 |
16 ]]></command> | 20 ]]></command> |
17 <inputs> | 21 <inputs> |
18 <conditional name="opt"> | 22 <conditional name="opt"> |
19 <param name="input" type="select" label="Input identifiers (Uniprot accession number (e.g. P01023), Entrez gene ID (e.g.7157) or gene name (e.g. AQP7)" multiple="False" > | 23 <param name="input" type="select" label="Input IDs (UniProt Accession number, Entrez Gene ID or Gene Name" multiple="False" > |
20 <option value="text">Copy/paste your list of IDs </option> | 24 <option value="text">Copy/paste your list of IDs </option> |
21 <option value="file" selected="true">Input file containing your identifiers</option> | 25 <option value="file" selected="true">Input file containing your IDs</option> |
22 </param> | 26 </param> |
23 <when value="text" > | 27 <when value="text" > |
24 <param name="list" type="text" label="Enter list of identifiers" help="IDs must be separated by space into the form field, for example: P31946 P62258"> | 28 <param name="list" type="text" label="Enter list of IDs" help="IDs must be separated by a space into the form field, for example: P31946 P62258"> |
25 <sanitizer> | 29 <sanitizer> |
26 <valid initial="string.printable"> | 30 <valid initial="string.printable"> |
27 <remove value="'"/> | 31 <remove value="'"/> |
28 </valid> | 32 </valid> |
29 <mapping initial="none"> | 33 <mapping initial="none"> |
31 </mapping> | 35 </mapping> |
32 </sanitizer> | 36 </sanitizer> |
33 </param> | 37 </param> |
34 </when> | 38 </when> |
35 <when value="file" > | 39 <when value="file" > |
36 <param name="file" type="data" format="txt, tabular" label="Input file containing your identifiers" help="Input file is a tab-delimited file with at least one contain containing identifier" /> | 40 <param name="file" type="data" format="txt, tabular" label="Input file containing your IDs" help="Input file is a tab-delimited file with at least one contain containing identifier" /> |
37 <param name="header" type="boolean" checked="true" truevalue="true" falsevalue="false" label="Does your input file contain header?" /> | 41 <param name="header" type="boolean" checked="true" truevalue="true" falsevalue="false" label="Does file contain header?" /> |
38 <param type="text" name="ncol" value="c1" label="Please specify the column number where are your IDs (e.g : Enter c1 for column n°1)" /> | 42 <param type="text" name="ncol" value="c1" label="Column number of IDs (e.g : Enter c1 for column n°1)" /> |
39 </when> | 43 </when> |
40 | |
41 </conditional> | 44 </conditional> |
45 <param name="species" type="select" label="Species"> | |
46 <option value="48887">Human (Homo sapiens)</option> | |
47 <option value="48892">Mouse (Mouse musculus)</option> | |
48 <option value="48895">Rat (Rattus norvegicus)</option> | |
49 </param> | |
42 </inputs> | 50 </inputs> |
43 <outputs> | 51 <outputs> |
44 <data name="output" format="html" label="" /> | 52 <data name="output" format="html" label="" /> |
45 <data name="trash" format="tabular" hidden="true" label="Invalid id not send to reactome"> | 53 <data name="trash" format="tabular" hidden="true" label="Invalid id not send to reactome"> |
46 <discover_datasets pattern="(Reactome_Analysis_Tools_invalid_ID).txt" ext="txt" visible="false" assign_primary_output="false"/> | 54 <discover_datasets pattern="(Reactome_Analysis_Tools_invalid_ID).txt" ext="tabular" visible="false" assign_primary_output="false"/> |
47 </data> | 55 </data> |
48 </outputs> | 56 </outputs> |
49 <tests> | 57 <tests> |
50 <test> | 58 <test> |
51 <conditional name="opt" > | 59 <conditional name="opt" > |
57 <output name="output" file="Reactome_Analysis_Tools.html" ftype="html" /> | 65 <output name="output" file="Reactome_Analysis_Tools.html" ftype="html" /> |
58 <!-- <output name="trash" file="Reactome_Analysis_Tools_invalid_ID.txt" ftype="tab" hidden="true" /> --> | 66 <!-- <output name="trash" file="Reactome_Analysis_Tools_invalid_ID.txt" ftype="tab" hidden="true" /> --> |
59 </test> | 67 </test> |
60 </tests> | 68 </tests> |
61 <help><![CDATA[ | 69 <help><![CDATA[ |
62 Reactome software provides service of creating diagram representing the relations between the biological processes. This tool allows linking to Reactome web service with pre-loaded data from a list of IDs, a file containing IDs or from a column of a complexed file. | |
63 | 70 |
64 **For the rows that have more than 1 ID, only the first one is taken into account.** | 71 **Description** |
65 | 72 |
66 **Supported IDs: Uniprot accession number (e.g. P01023), Entrez gene ID (e.g.7157), gene name (e.g. AQP7). If there is any ID containing invalid characters, it will be removed from the queue and placed in "Invalid identifiers" file.** | 73 This tool allows to map your gene/protein list to the Reactome pathway browser (visualize and interact with biological pathways) via a web service with pre-loaded data from your list of IDs |
74 | |
75 ----- | |
76 | |
77 **Input** | |
78 | |
79 A list of gene/protein IDs. List of IDs can be entered either in a copy/paste manner or by selecting a file with your IDs. | |
80 | |
81 ID types allowed are: UniProt accNumber (e.g. O75391), Entrez gene ID (e.g. 8086) and gene name (e.g. TP53, NUP58...). If you have other type of ID, please use the ID_Converter tool of ProteoRE. | |
82 | |
83 ----- | |
84 | |
85 **Parameters** | |
86 | |
87 "Select species": can be Human (Homo sapiens), Mouse (Mouse musculus) or Rat (Rattus norvegicus) | |
88 | |
89 ----- | |
90 | |
91 **Output** | |
92 | |
93 To access results, click on the "View data" icon (from the item created in your history panel), then click on the "Analyze" button in the central panel will directly display the results in the Reactome pathway browser. | |
67 | 94 |
68 ----- | 95 ----- |
69 | 96 |
70 .. class:: infomark | 97 .. class:: infomark |
71 | 98 |
72 **Authors** | 99 **Authors** |
73 | 100 |
74 Fabregat et al. 2017 PMID: 29145629 (https://www.ncbi.nlm.nih.gov/pubmed/29145629) | 101 Fabregat et al., The Reactome Pathway Knowledgebase. Nucleic Acids Res. 2018. 46(D1):D649-D655. doi: 10.1093/nar/gkx1132. PubMed PMID: 29145629 |
75 | 102 |
76 Milacic et al. 2012 PMID:24213504 (https://www.ncbi.nlm.nih.gov/pubmed/24243840) | 103 ----- |
77 | 104 |
78 .. class:: infomark | 105 .. class:: infomark |
79 | 106 |
80 **Galaxy integration** | 107 **Galaxy integration** |
81 | 108 |
82 T.P. Lien Nguyen, Florence Combes, Yves Vandenbrouck CEA, INSERM, CNRS, Grenoble-Alpes University, BIG Institute, FR | 109 T.P. Lien Nguyen, Florence Combes, Yves Vandenbrouck - CEA, INSERM, CNRS, Grenoble-Alpes University, BIG Institute, FR |
83 | 110 |
84 Sandra Dérozier, Olivier Rué, Christophe Caron, Valentin Loux INRA, Paris-Saclay University, MAIAGE Unit,Migale Bioinformatics platform, | 111 Sandra Dérozier, Olivier Rué, Christophe Caron, Valentin Loux - INRA, Paris-Saclay University, MAIAGE Unit, Migale Bioinformatics platform, FR |
112 | |
113 This work has been partially funded through the French National Agency for Research (ANR) IFB project. | |
85 | 114 |
86 Contact support@proteore.org for any questions or concerns about the Galaxy implementation of this tool. | 115 Contact support@proteore.org for any questions or concerns about the Galaxy implementation of this tool. |
87 ]]></help> | 116 ]]></help> |
88 <citations> | 117 <citations> |
89 </citations> | 118 </citations> |