10
|
1 <tool id="oncoenrichr_wrapper" name="oncoEnrichR" version="1.5.1.1">
|
2
|
2 <description>Cancer-dedicated gene set interpretation</description>
|
|
3 <requirements>
|
10
|
4 <container type="docker">sigven/oncoenrichr:1.5.1.1</container>
|
2
|
5 </requirements>
|
9
|
6 <environment_variables>
|
|
7 <environment_variable name="XDG_CACHE_HOME">\$_GALAXY_JOB_TMP_DIR</environment_variable>
|
|
8 </environment_variables>
|
2
|
9 <command detect_errors="aggressive"><![CDATA[
|
|
10 #if $query_set.query_choice.query_input == "text"
|
|
11 echo $query_set.query_choice.query_text | sed 's/__cn__/\n/g' > query_text.csv &&
|
|
12 #set input_file = './query_text.csv'
|
|
13 #else if $query_set.query_choice.query_input == "file"
|
|
14 ln -s $query_set.query_choice.query_file "$query_set.query_choice.query_file.element_identifier" &&
|
|
15 #set input_file = './' + str($query_set.query_choice.query_file.element_identifier)
|
|
16 #end if
|
|
17
|
|
18 #set background_file = ''
|
|
19 #if $fun_enrich.custom_bgset.def_background
|
|
20 #if $fun_enrich.custom_bgset.bg_choice.bg_source == "text"
|
|
21 echo $fun_enrich.custom_bgset.bg_choice.bg_enrich_text | sed 's/__cn__/\n/g' > custom_bgset.csv &&
|
|
22 #set background_file = './custom_bgset.csv'
|
|
23 #else if $fun_enrich.custom_bgset.bg_choice.bg_source == "file" and $fun_enrich.custom_bgset.bg_choice.bg_enrich_file
|
|
24 ln -s $fun_enrich.custom_bgset.bg_choice.bg_enrich_file background_text.csv &&
|
|
25 #set background_file = './custom_bgset.csv'
|
|
26 #else
|
|
27 #set background_file = ''
|
|
28 #end if
|
|
29 #end if
|
|
30
|
|
31 R -e 'suppressPackageStartupMessages(library(oncoEnrichR));
|
|
32 suppressWarnings(load(system.file("internal_db", "oedb.rda", package = "oncoEnrichR")));
|
8
|
33 gene_data <- read.csv("$input_file", strip.white = TRUE);
|
2
|
34 oe_report <- oncoEnrichR::onco_enrich(
|
|
35 query = gene_data[[1]],
|
|
36 oeDB = oedb,
|
|
37 #if $query_set.query_id_type
|
|
38 query_id_type = "$query_set.query_id_type",
|
|
39 #end if
|
|
40 ignore_id_err = $query_set.ignore_id_err,
|
|
41
|
|
42 #if $report_metadata.project_title
|
|
43 project_title = "$report_metadata.project_title",
|
|
44 #end if
|
|
45 #if $report_metadata.project_owner
|
|
46 project_owner = "$report_metadata.project_owner",
|
|
47 #end if
|
|
48 #if $report_metadata.project_description
|
|
49 project_description = "$report_metadata.project_description",
|
|
50 #end if
|
|
51
|
|
52 show_enrichment = $modules.show_enrichment,
|
|
53 show_ppi = $modules.show_ppi,
|
|
54 show_disease = $modules.show_disease,
|
|
55 show_cancer_hallmarks = $modules.show_cancer_hallmarks,
|
|
56 show_drug = $modules.show_drug,
|
|
57 show_aberration = $modules.show_aberration,
|
|
58 show_coexpression = $modules.show_coexpression,
|
|
59 show_subcell_comp = $modules.show_subcell_comp,
|
|
60 show_complex = $modules.show_complex,
|
3
|
61 show_domain = $modules.show_domain,
|
2
|
62 show_fitness = $modules.show_fitness,
|
|
63 show_ligand_receptor = $modules.show_ligand_receptor,
|
|
64 show_regulatory = $modules.show_regulatory,
|
3
|
65 show_prognostic = $modules.show_prognostic,
|
|
66 show_unknown_function = $modules.show_unknown_function,
|
2
|
67 show_synleth = $modules.show_synleth,
|
|
68
|
|
69 #if $background_file
|
8
|
70 bgset = read.csv("$background_file", strip.white = TRUE)[[1]],
|
2
|
71 #if $fun_enrich.custom_bgset.bg_enrich_id_type
|
|
72 bgset_id_type = "$fun_enrich.custom_bgset.bg_enrich_id_type",
|
|
73 #end if
|
|
74 #if $fun_enrich.custom_bgset.bg_enrich_description
|
|
75 bgset_description = "$fun_enrich.custom_bgset.bg_enrich_description",
|
|
76 #end if
|
|
77 #else
|
|
78 bgset = NULL,
|
|
79 #end if
|
|
80
|
3
|
81 #if $fun_enrich.enrichment_p_value_cutoff
|
|
82 enrichment_p_value_cutoff = $fun_enrich.enrichment_p_value_cutoff,
|
2
|
83 #end if
|
3
|
84 #if $fun_enrich.enrichment_p_value_adj
|
|
85 enrichment_p_value_adj = "$fun_enrich.enrichment_p_value_adj",
|
|
86 #end if
|
|
87 #if $fun_enrich.enrichment_q_value_cutoff
|
|
88 enrichment_q_value_cutoff = $fun_enrich.enrichment_q_value_cutoff,
|
2
|
89 #end if
|
3
|
90 #if $fun_enrich.enrichment_min_geneset_size
|
|
91 enrichment_min_geneset_size = $fun_enrich.enrichment_min_geneset_size,
|
2
|
92 #end if
|
3
|
93 #if $fun_enrich.enrichment_max_geneset_size
|
|
94 enrichment_max_geneset_size = $fun_enrich.enrichment_max_geneset_size,
|
2
|
95 #end if
|
3
|
96 enrichment_plot_num_terms = $fun_enrich.enrichment_plot_num_terms,
|
|
97 enrichment_simplify_go = $fun_enrich.enrichment_simplify_go,
|
|
98
|
2
|
99
|
|
100 #if $protein_interactions.ppi_add_nodes
|
|
101 ppi_add_nodes = $protein_interactions.ppi_add_nodes,
|
|
102 #end if
|
3
|
103 #if $protein_interactions.ppi_string_min_score
|
|
104 ppi_string_min_score = $protein_interactions.ppi_string_min_score,
|
2
|
105 #end if
|
3
|
106 #if $protein_interactions.ppi_biogrid_min_evidence
|
|
107 ppi_biogrid_min_evidence = $protein_interactions.ppi_biogrid_min_evidence,
|
|
108 #end if
|
|
109 ppi_show_drugs = $protein_interactions.ppi_show_drugs,
|
|
110 ppi_show_isolated_nodes = $protein_interactions.ppi_show_isolated_nodes,
|
|
111 ppi_node_shadow = $protein_interactions.ppi_node_shadow,
|
2
|
112
|
3
|
113 #if $subcellular_compartments.subcellcomp_min_confidence
|
|
114 subcellcomp_min_confidence = $subcellular_compartments.subcellcomp_min_confidence,
|
2
|
115 #end if
|
3
|
116 #if $subcellular_compartments.subcellcomp_min_channels
|
|
117 subcellcomp_min_channels = $subcellular_compartments.subcellcomp_min_channels,
|
2
|
118 #end if
|
3
|
119 #if $fitness.fitness_max_score
|
|
120 fitness_max_score = $fitness.fitness_max_score,
|
|
121 #end if
|
|
122 subcellcomp_show_cytosol = $subcellular_compartments.subcellcomp_show_cytosol,
|
2
|
123 #if $disease.show_top_diseases_only
|
|
124 show_top_diseases_only = $disease.show_top_diseases_only,
|
|
125 #end if
|
|
126
|
3
|
127 regulatory_min_confidence = "$regulatory.regulatory_min_confidence",
|
2
|
128 galaxy = TRUE
|
|
129 );
|
|
130
|
8
|
131 oncoEnrichR::write(report = oe_report, oeDB = oedb, file = "$report1", format = "html", embed_resources = F, extra_files_path = "$report1.extra_files_path", overwrite = T, ignore_file_extension = T);
|
|
132 oncoEnrichR::write(report = oe_report, oeDB = oedb, file = "$report2", format = "excel", overwrite = T, ignore_file_extension = T)' 2>&1
|
2
|
133
|
|
134 ]]></command>
|
|
135 <inputs>
|
|
136 <section title="" name=""/>
|
|
137 <section name="query_set" title="Query gene set" expanded="true">
|
|
138 <conditional name="query_choice">
|
|
139 <param name="query_input" type="select" multiple="false" display="radio"
|
|
140 label="Query gene set: do you want to upload a file OR paste into a text box?">
|
|
141 <option value="text">Text field</option>
|
|
142 <option value="file">From file</option>
|
|
143 </param>
|
|
144 <when value="text">
|
|
145 <param type="text" name="query_text" label="Query gene set identifiers (one per line)" area="true"/>
|
|
146 </when>
|
|
147 <when value="file">
|
|
148 <param name="query_file" type="data" format="txt" label="Query gene set identifiers" multiple="false"/>
|
|
149 </when>
|
|
150 </conditional>
|
|
151 <param name="query_id_type" type="select" label="Query identifier type" display="radio" multiple="false">
|
|
152 <option value="symbol">Primary gene symbol (HGNC) - e.g. KRAS</option>
|
|
153 <option value="uniprot_acc">UniProt accession - e.g. P01116</option>
|
|
154 <option value="entrezgene">NCBI Entrez gene identifier - e.g. 3845</option>
|
|
155 <option value="ensembl_gene">Ensembl gene identifier - e.g. ENSG00000133703</option>
|
|
156 <option value="ensembl_mrna">Ensembl transcript identifier - e.g. ENST00000311936</option>
|
|
157 <option value="ensembl_protein">Ensembl protein identifier - e.g. ENSP00000308495</option>
|
8
|
158 <option value="refseq_transcript_id">RefSeq mRNA identifier - e.g. NM_004985</option>
|
2
|
159 <option value="refseq_protein">RefSeq protein identifier - e.g. NP_004976</option>
|
|
160 </param>
|
|
161 <param name="ignore_id_err" type="boolean" label="Ignore erroneous idenfiers" truevalue="T" falsevalue="F" checked="true"/>
|
|
162 </section>
|
|
163
|
|
164 <section title="" name=""/>
|
|
165 <section name="report_metadata" title="Project metadata and output settings" expanded="true">
|
|
166 <param type="text" name="report_name" label="Output filename (prefix)" value="Report"/>
|
|
167 <param type="text" name="project_title" label="Project title" />
|
|
168 <param type="text" name="project_owner" label="Project owner" />
|
|
169 <param type="text" name="project_description" label="Project description" area="true"/>
|
|
170 </section>
|
|
171
|
|
172 <section title="" name=""/>
|
|
173 <section name="modules" title="Analysis modules included in the report" expanded="true">
|
3
|
174 <param name="show_disease" type="boolean" label="Gene-cancer associations" truevalue="T" falsevalue="F" checked="true"/>
|
2
|
175 <param name="show_enrichment" type="boolean" label="Gene functional enrichment" truevalue="T" falsevalue="F" checked="true"/>
|
|
176 <param name="show_ppi" type="boolean" label="Protein-protein interaction network" truevalue="T" falsevalue="F" checked="true"/>
|
8
|
177 <param name="show_regulatory" type="boolean" label="Regulatory (TF-target) interactions" truevalue="T" falsevalue="F" checked="false"/>
|
|
178 <param name="show_ligand_receptor" type="boolean" label="Ligand-receptor interactions" truevalue="T" falsevalue="F" checked="false"/>
|
2
|
179 <param name="show_cancer_hallmarks" type="boolean" label="Cancer hallmark associations" truevalue="T" falsevalue="F" checked="true"/>
|
|
180 <param name="show_drug" type="boolean" label="Drug-target associations" truevalue="T" falsevalue="F" checked="true"/>
|
8
|
181 <param name="show_aberration" type="boolean" label="Tumor aberration frequencies" truevalue="T" falsevalue="F" checked="false"/>
|
|
182 <param name="show_coexpression" type="boolean" label="Tumor co-expression patterns" truevalue="T" falsevalue="F" checked="false"/>
|
2
|
183 <param name="show_subcell_comp" type="boolean" label="Subcellular localizations" truevalue="T" falsevalue="F" checked="true"/>
|
|
184 <param name="show_complex" type="boolean" label="Protein complex memberships" truevalue="T" falsevalue="F" checked="true"/>
|
3
|
185 <param name="show_domain" type="boolean" label="Protein domain frequencies" truevalue="T" falsevalue="F" checked="false"/>
|
2
|
186 <param name="show_fitness" type="boolean" label="Gene fitness effects" truevalue="T" falsevalue="F" checked="true"/>
|
|
187 <param name="show_synleth" type="boolean" label="Predicted synthetic lethality interactions" truevalue="T" falsevalue="F" checked="true"/>
|
8
|
188 <param name="show_unknown_function" type="boolean" label="Genes of poorly defined function" truevalue="T" falsevalue="F" checked="false"/>
|
3
|
189 <param name="show_prognostic" type="boolean" label="Prognostic cancer associations" truevalue="T" falsevalue="F" checked="true"/>
|
2
|
190 </section>
|
|
191
|
|
192 <section title="" name=""/>
|
3
|
193 <section name="fun_enrich" title="Options - gene functional enrichment">
|
2
|
194 <conditional name="custom_bgset">
|
|
195 <param name="def_background" type="boolean" label="Define custom background set (all annotated protein-coding genes by default)" truevalue="T" falsevalue="F" checked="false"/>
|
|
196 <when value="T">
|
|
197 <conditional name="bg_choice">
|
|
198 <param name="bg_source" type="select" display="radio"
|
|
199 label="Custom background gene set: do you want to upload a file OR paste into a text box?">
|
|
200 <option value="text">Text field</option>
|
|
201 <option value="file">From file</option>
|
|
202
|
|
203 </param>
|
|
204 <when value="file">
|
|
205 <param type="data" format="txt" name="bg_enrich_file" label="Custom background gene set" optional="true" multiple="false"/>
|
|
206 </when>
|
|
207 <when value="text">
|
|
208 <param type="text" name="bg_enrich_text" label="Custom background gene set identifiers (one per line):" area="true"/>
|
|
209 </when>
|
|
210 </conditional>
|
|
211
|
|
212 <param type="select" name="bg_enrich_id_type" label="Custom background identifier type" display="radio" multiple="false">
|
|
213 <option value="symbol">Primary gene symbol (HGNC) - e.g. KRAS</option>
|
|
214 <option value="uniprot_acc">UniProt accession - e.g. P01116</option>
|
|
215 <option value="entrezgene">NCBI Entrez gene identifier - e.g. 3845</option>
|
|
216 <option value="ensembl_gene">Ensembl gene identifier - e.g. ENSG00000133703</option>
|
|
217 <option value="ensembl_mrna">Ensembl transcript identifier - e.g. ENST00000311936</option>
|
|
218 <option value="ensembl_protein">Ensembl protein identifier - e.g. ENSP00000308495</option>
|
8
|
219 <option value="refseq_transcript_id">RefSeq mRNA identifier - e.g. NM_004985</option>
|
2
|
220 <option value="refseq_protein">RefSeq protein identifier - e.g. NP_004976</option>
|
|
221 </param>
|
|
222 <param type="text" name="bg_enrich_description" label="Custom background gene set description" value="Custom background description"/>
|
|
223 </when>
|
|
224 </conditional>
|
|
225
|
3
|
226 <param name="enrichment_p_value_cutoff" type="float" label="P-value cutoff for enrichment tests (clusterProfiler)" value="0.05"/>
|
|
227 <param name="enrichment_p_value_adj" type="select" label="P-value adjustment method (clusterProfiler)">
|
|
228 <option value="BH">Benjamini-Hochberg</option>
|
|
229 <option value="holm">Holm</option>
|
|
230 <option value="hochberg">Hochberg</option>
|
|
231 <option value="hommel">Hommel</option>
|
|
232 <option value="bonferroni">Bonferroni</option>
|
|
233 <option value="BY">Benjamini-Yekutieli</option>
|
2
|
234 <option value="fdr">fdr</option>
|
|
235 <option value="none">none</option>
|
|
236 </param>
|
3
|
237 <param name="enrichment_q_value_cutoff" type="float" label="Q-value cutoff for enrichment tests to report as significant (clusterProfiler)" value="0.2"/>
|
|
238 <param name="enrichment_min_geneset_size" type="integer" label="Minimum number of genes annotated by ontology term for testing (clusterProfiler)" value="10"/>
|
|
239 <param name="enrichment_max_geneset_size" type="integer" label="Maximum number of genes annotated by ontology term for testing (clusterProfiler)" value="500"/>
|
|
240 <param name="enrichment_simplify_go" type="boolean" label="Simplify GO enrichment results by removal of redundant terms (recommended)" truevalue="T" falsevalue="F" checked="true"/>
|
|
241 <param name="enrichment_plot_num_terms" type="integer" label="Number of top enriched Gene Ontology terms (max) to show in enrichment barplot" min="10" max="30" value="20"/>
|
2
|
242 </section>
|
|
243
|
|
244 <section title="" name=""/>
|
3
|
245 <section name="fitness" title="Options - gene fitness scores">
|
|
246 <param name="fitness_max_score" type="float" label="Maximum loss-of-fitness score (Bayes Factor from BAGEL) for genes retrieved from Project Score" value="-2" min="-5" max="0"/>
|
2
|
247 </section>
|
|
248 <section title="" name=""/>
|
3
|
249 <section name="protein_interactions" title="Options - protein-protein interaction network">
|
|
250 <param name="ppi_network_type" type = "select" label="STRING: type of retrieved network interactions">
|
|
251 <option value="functional">functional</option>
|
|
252 <option value="physical">physical</option>
|
|
253 </param>
|
|
254 <param name="ppi_string_min_score" type="float" label="STRING: minimum confidence score for interactions to be included in network" value="0.9" min="0.4" max="1"/>
|
|
255 <param name="ppi_biogrid_min_evidence" type="integer" label="BioGRID: Minimum number of evidence support for interactions to be included in network" value="3" min="2" max="10"/>
|
|
256 <param name="ppi_add_nodes" type="integer" label="Addition of interacting non-queryset proteins to the protein-protein interaction network (STRING/BioGRID)" value="30" min="0" max="50"/>
|
|
257 <param name="ppi_show_drugs" type="boolean" label="Attach anti-cancer drugs in protein-protein interaction network (STRING/BioGRID)" truevalue="T" falsevalue="F" checked="false"/>
|
|
258 <param name="ppi_show_isolated_nodes" type="boolean" label="Show isolated nodes in protein-protein interaction network (STRING/BioGRID)" truevalue="T" falsevalue="F" checked="false"/>
|
|
259 <param name="ppi_node_shadow" type="boolean" label="Add shadow to nodes in protein-protein interaction network" truevalue="T" falsevalue="F" checked="true"/>
|
2
|
260 </section>
|
|
261 <section title="" name=""/>
|
3
|
262 <section name="regulatory" title="Options - regulatory interactions">
|
|
263 <param name="regulatory_min_confidence" type="select" label = "Minimum confidence level of regulatory interactions included (DoRothEA - A:highest, D:lowest)">
|
2
|
264 <option value="D">D</option>
|
|
265 <option value="C">C</option>
|
|
266 <option value="B">B</option>
|
|
267 <option value="A">A</option>
|
|
268 </param>
|
|
269 </section>
|
|
270 <section title="" name=""/>
|
|
271
|
3
|
272 <section name="subcellular_compartments" title="Options - Subcellular compartment annotations">
|
|
273 <param name="subcellcomp_min_confidence" type="integer" label="Minimum confidence level for subcellular compartment annotations" value="3" min="3" max="5"/>
|
|
274 <param name="subcellcomp_min_channels" type="integer" label="Minimum number of channel (Text Mining, Experimental, Knowledge) support for annotations" value="1" min="1" max="3"/>
|
|
275 <param name="subcellcomp_show_cytosol" type="boolean" label="Show cytosol annotations (very common localization) in subcellular heatmap " truevalue="T" falsevalue="F" checked="false"/>
|
2
|
276 </section>
|
|
277 <section title="" name=""/>
|
|
278
|
3
|
279 <section name="disease" title="Options - Disease associations">
|
2
|
280 <param type="boolean" name="show_top_diseases_only" label="Show top disease assocations only" truevalue="T" falsevalue="F" checked="true"/>
|
|
281 </section>
|
|
282
|
|
283 </inputs>
|
|
284 <outputs>
|
|
285 <data format="xlsx" name="report2" label="$report_metadata.report_name - xlsx"/>
|
|
286 <data format="html" name="report1" label="$report_metadata.report_name - html"/>
|
|
287 </outputs>
|
|
288
|
|
289
|
|
290 <help><![CDATA[
|
|
291 .. class:: infomark
|
|
292
|
8
|
293 The query gene set is limited to n = 200 identifiers. Running with more identifiers can be done through the stand-alone R package. A very limited query gene set (e.g. n < 5) will in general reduce the relevance and significance of many oncoEnrichR report modules (i.e. protein-protein interaction networks, functional enrichment etc.).
|
2
|
294
|
|
295 -----
|
|
296
|
|
297 **Dataset formats**
|
|
298
|
|
299 The input dataset is in tabular_ format. The two output datasets are html_ and xlsx.
|
|
300
|
|
301 .. _tabular: ${static_path}/formatHelp.html#tab
|
|
302 .. _html: ${static_path}/formatHelp.html#html
|
|
303
|
|
304 -----
|
|
305
|
|
306 **What it does**
|
|
307
|
8
|
308 *OncoEnrichR* is intended for exploratory analysis and prioritization of a candidate hits (referred to as *query set* below) from high-throughput cancer biology experiments. The tool queries a number of high-quality data resources in order to interpret the query gene set along various dimensions, examples being cancer aberration frequencies, protein-protein interactions, pathway enrichment, subcellular compartment localization, target druggability, gene fitness scores, and regulatory interactions.
|
2
|
309
|
|
310 The results from the various analysis modules are provided in an interactive HTML report where the user can interrogate the results further. A multisheet Excel workbook is also provided for convience. The following resources are currently utilized for annotation and analysis:
|
|
311
|
|
312 - `Open Targets Platform <https://targetvalidation.org/>`_ - disease associations, drug-target associations, cancer hallmarks, and druggability/tractability rankings
|
|
313
|
|
314 - `The Cancer Genome Atlas <https://portal.gdc.cancer.gov/>`_ - gene aberration frequencies and co-expression patterns in approximately 10,000 primary tumor samples
|
|
315
|
|
316 - `The Human Protein Atlas <https://www.proteinatlas.org/>`_ - expression data for healthy human tissues (`GTex <https://gtexportal.org/home/>`_)/cell types, and prognostic gene expression associations in cancer (`The Pathology Atlas <https://www.proteinatlas.org/humanproteome/pathology/>`_)
|
|
317
|
|
318 - `Molecular Signatures Database (MSigDB) <http://software.broadinstitute.org/gsea/msigdb/index.jsp/>`_ - collection of annotated (e.g. towards pathways) gene sets for enrichment/overrepresentation analysis. This includes gene sets from `Gene Ontology <http://geneontology.org/>`_, `Reactome <https://reactome.org/>`_, `KEGG <https://www.genome.jp/kegg/pathway.html/>`_, `WikiPathways <https://www.wikipathways.org/index.php/WikiPathways/>`_, `BIOCARTA <https://maayanlab.cloud/Harmonizome/dataset/Biocarta+Pathways/>`_, as well as curated `immunologic <https://www.gsea-msigdb.org/gsea/msigdb/collections.jsp#C7/>`_ and `cancer-specific <https://www.gsea-msigdb.org/gsea/msigdb/collections.jsp#C6/>`_ signatures.
|
|
319
|
|
320 - `NetPath <http://www.netpath.org/>`_ - manually curated resource of signal transduction pathways in humans
|
|
321
|
4
|
322 - `UniProt <https://uniprot.org>`_ - Comprehensive resource of protein sequence and functional information
|
|
323
|
2
|
324 - `STRING <https://string-db.org/>`_ - protein-protein interaction database
|
|
325
|
4
|
326 - `InterPro/PFAM <https://www.ebi.ac.uk/interpro/>`_ - Collection of protein families/domains`
|
|
327
|
|
328 - `BIOGRID <http://thebiogrid.org>`_ - Database of Protein, Genetic and Chemical Interactions
|
|
329
|
2
|
330 - `CellChatDB <http://www.cellchat.org/>`_ - database on ligand-receptor interactions
|
|
331
|
|
332 - `DoRothEA <https://saezlab.github.io/dorothea/>`_ - gene set resource containing signed transcription factor (TF) - target interactions
|
|
333
|
|
334 - `CORUM <https://mips.helmholtz-muenchen.de/corum/>`_ - protein complex database
|
|
335
|
|
336 - `Compleat <https://fgr.hms.harvard.edu/compleat>`_ - protein complex resource
|
|
337
|
|
338 - `ComplexPortal <https://www.ebi.ac.uk/complexportal/home/>`_ - manually curated, encyclopaedic resource of macromolecular complexes
|
|
339
|
|
340 - `hu.MAP2 <http://humap2.proteincomplexes.org/>`_ - human protein complex map
|
|
341
|
3
|
342 - `COMPARTMENTS <https://compartments.jensenlab.org/Search/>`_ - subcellular compartment annotation database
|
2
|
343
|
|
344 - `CancerMine <http://bionlp.bcgsc.ca/cancermine/>`_ - literature-mined resource on cancer drivers, oncogenes and tumor suppressor genes
|
|
345
|
4
|
346 - `Cancer Gene Census <https://cancer.sanger.ac.uk/census/>`_ - Curated high-confidence list of genes with substantial published evidence in oncology
|
|
347
|
2
|
348 - `Network of Cancer Genes <http://ncg.kcl.ac.uk/>`_ - manually curated collection of cancer genes, healthy drivers and their properties
|
|
349
|
4
|
350 - `DepMap/Project Score <https://score.depmap.sanger.ac.uk/>`_ - database on the effects on cancer cell line viability elicited by CRISPR-Cas9 mediated gene activation
|
2
|
351
|
|
352 - `Genetic determinants of survival in cancer <http://survival.cshl.edu/>`_ - resource on the prognostic impact of genetic aberrations (methylation, CNA, mutation, expression) in human cancers (TCGA)
|
|
353
|
|
354 - `Predicted synthetic lethality interactions <https://pubmed.ncbi.nlm.nih.gov/34529928/>`_ - comprehensive prediction of synthetic lethality interactions in human cancer cell lines
|
|
355
|
|
356 The contents of the gene set analysis report attempt to answer the following questions related to the query set:
|
|
357
|
3
|
358 - Which diseases/tumor types are known to be associated with genes in the query set, and to what extent? Which genes show evidence of oncogenic and/or tumor suppressive roles?
|
2
|
359
|
|
360 - Which query genes have been linked (through literature) to the various hallmarks of cancer?
|
|
361
|
|
362 - Which genes in the query set are poorly characterized or have an unknown function?
|
|
363
|
|
364 - Which proteins in the query set can be targeted by inhibitors for diffferent cancer conditions (early and late clinical development phases)? What is the tractability/druggability status for other targets in the query set?
|
|
365
|
|
366 - Which cancer-relevant protein complexes are involved for proteins in the query set?
|
|
367
|
|
368 - Are there known cancer-relevant regulatory interactions (transcription factor (TF) - target) found in the query set?
|
|
369
|
|
370 - Are there known ligand-receptor interactions in the query set?
|
|
371
|
|
372 - Which subcellular compartments (nucleus, cytosol, plasma membrane etc.) are dominant localizations for members of the query set?
|
|
373
|
|
374 - Which protein-protein interactions are known within the query set? Are there interactions between members of the query set and other cancer-relevant proteins (e.g. proto-oncogenes, tumor-suppressors or predicted cancer drivers)? Which proteins constitute hubs in the protein-protein interaction network?
|
|
375
|
|
376 - Are there specific pathways, biological processes or molecular functions that are enriched within the query set, as compared to a reference/background set?
|
|
377
|
|
378 - Which members of the query set are frequently mutated in tumor sample cohorts (TCGA - SNVs/InDels / homozygous deletions / copy number amplifications)? What are the most frequent recurrent somatic variants (SNVs/InDels) in the query set genes?
|
|
379
|
|
380 - Which members of the query set are co-expressed (strong negative or positive correlations) with cancer-relevant genes (i.e. proto-oncogenes or tumor suppressors) in tumor sample cohorts (TCGA)?
|
|
381
|
|
382 - Which members of the query set are associated with better/worse survival in different cancers, considering mutation, expression, methylation or copy number levels in tumors?
|
|
383
|
|
384 - Which members of the query set are predicted as partners of synthetic lethality interactions?
|
|
385
|
|
386 - Which members of the query set are associated with cellular loss-of-fitness in CRISPR/Cas9 whole-genome drop out screens of cancer cell lines (i.e. reduction of cell viability elicited by a gene inactivation)? Which genes should be prioritized considering genomic biomarkers and fitness scores in combination?
|
|
387
|
|
388
|
|
389 ]]>
|
|
390 </help>
|
|
391
|
|
392 <citations>
|
|
393 <!-- Example of annotating a citation using a DOI. -->
|
6
|
394 <citation type="doi">10.1002/ijc.34666</citation>
|
2
|
395 <!-- Example of annotating a citation using a BibTex entry. -->
|
|
396 </citations>
|
|
397 </tool>
|