-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsccoda.json
More file actions
59 lines (59 loc) · 1.89 KB
/
sccoda.json
File metadata and controls
59 lines (59 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
{
"tool_id": "sccoda",
"name": "scCODA Compositional Analysis",
"category": "composition",
"framework": "sccoda",
"function": "sccoda.util.cell_composition_data.from_scanpy + sccoda.model",
"valid_after": [
"annotation"
],
"valid_before": [],
"paradigms": [
"disease_vs_healthy",
"temporal_longitudinal"
],
"parameters": {
"cell_type_key": {
"type": "string",
"required": true,
"guidance": "obs column with cell type labels."
},
"sample_key": {
"type": "string",
"required": true,
"guidance": "obs column identifying biological samples."
},
"condition_key": {
"type": "string",
"required": true,
"guidance": "obs column with condition labels."
},
"reference_cell_type": {
"type": "string",
"default": "automatic",
"guidance": "Reference cell type for compositional analysis. Choose a cell type believed to be unaffected by the condition. If 'automatic', scCODA selects one."
},
"fdr_threshold": {
"type": "float",
"default": 0.05,
"guidance": "FDR threshold for credible changes."
}
},
"outputs": {
"credible_effects": "Which cell types show credible compositional changes",
"effect_sizes": "Log-fold change in composition per cell type"
},
"validation": {
"check": "Model should converge. At least one cell type should be testable."
},
"notes": "Compositional analysis is necessary because cell type proportions sum to 1. An increase in one type necessarily decreases others. Simple proportion tests (e.g., t-test on fractions) are WRONG because they ignore this constraint. scCODA uses a Bayesian model that properly handles the compositional nature of the data.",
"provenance_captures": [
"cell_type_key",
"sample_key",
"condition_key",
"reference_cell_type",
"fdr_threshold",
"n_cell_types",
"n_samples"
]
}