-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaga.json
More file actions
32 lines (32 loc) · 1.27 KB
/
paga.json
File metadata and controls
32 lines (32 loc) · 1.27 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
{
"tool_id": "paga",
"name": "PAGA Trajectory Inference",
"category": "trajectory",
"framework": "scanpy",
"function": "sc.tl.paga",
"valid_after": ["clustering"],
"valid_before": ["monocle3_pseudotime"],
"paradigms": ["developmental_trajectory", "cell_atlas"],
"parameters": {
"groups": {
"type": "string",
"default": "leiden",
"guidance": "obs key with cluster labels. PAGA computes connectivity between these groups."
},
"model": {
"type": "string",
"default": "v1.2",
"options": ["v1.0", "v1.2"],
"guidance": "PAGA model version. v1.2 is more robust."
}
},
"outputs": {
"connectivities": "adata.uns['paga']['connectivities']",
"connectivities_tree": "adata.uns['paga']['connectivities_tree']"
},
"validation": {
"check": "PAGA graph should be connected (all clusters reachable). Disconnected components may indicate over-clustering or truly distinct populations."
},
"notes": "PAGA provides a coarse-grained trajectory graph at the cluster level. Useful for identifying plausible lineage relationships before running pseudotime. Combine with sc.pl.paga for visualization and sc.tl.draw_graph for force-directed layouts initialized by PAGA.",
"provenance_captures": ["groups", "model", "n_groups"]
}