-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster_profiler.json
More file actions
49 lines (49 loc) · 1.53 KB
/
cluster_profiler.json
File metadata and controls
49 lines (49 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"tool_id": "cluster_profiler",
"name": "clusterProfiler GO/KEGG Enrichment",
"category": "enrichment",
"framework": "clusterProfiler",
"function": "clusterProfiler::enrichGO / enrichKEGG (R via subprocess)",
"valid_after": ["differential_expression"],
"valid_before": [],
"paradigms": ["all"],
"parameters": {
"organism": {
"type": "string",
"default": "org.Hs.eg.db",
"options": ["org.Hs.eg.db", "org.Mm.eg.db"],
"guidance": "Annotation database. 'org.Hs.eg.db' for human, 'org.Mm.eg.db' for mouse."
},
"ont": {
"type": "string",
"default": "BP",
"options": ["BP", "MF", "CC", "ALL"],
"guidance": "GO ontology: BP (Biological Process, most common), MF (Molecular Function), CC (Cellular Component), ALL."
},
"pvalue_cutoff": {
"type": "float",
"default": 0.05
},
"qvalue_cutoff": {
"type": "float",
"default": 0.1
},
"min_gs_size": {
"type": "int",
"default": 10,
"guidance": "Minimum gene set size."
},
"max_gs_size": {
"type": "int",
"default": 500,
"guidance": "Maximum gene set size."
}
},
"outputs": {
"enrichment_results": "DataFrame with Description, GeneRatio, pvalue, p.adjust, qvalue, geneID"
},
"validation": {
"check": "Results should contain significant terms. Check for redundancy — use simplify() to reduce redundant GO terms."
},
"provenance_captures": ["organism", "ont", "pvalue_cutoff", "qvalue_cutoff", "n_genes_input", "n_terms_significant"]
}