-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter_genes.json
More file actions
41 lines (41 loc) · 890 Bytes
/
filter_genes.json
File metadata and controls
41 lines (41 loc) · 890 Bytes
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
{
"tool_id": "filter_genes",
"name": "Gene Filtering",
"category": "qc",
"framework": "scanpy",
"function": "sc.pp.filter_genes",
"valid_after": [
"qc"
],
"valid_before": [
"normalization"
],
"paradigms": [
"all"
],
"parameters": {
"min_cells": {
"type": "int",
"default": 3,
"range": [
1,
10
],
"guidance": "Minimum number of cells a gene must be expressed in to be retained. 3 is the standard default. Lower values keep more rare transcripts but increase noise."
}
},
"outputs": {
"filtered_adata": "AnnData with rarely-expressed genes removed",
"genes_before": "int",
"genes_after": "int"
},
"validation": {
"min_retention_pct": 50,
"check": "At least 50% of genes retained."
},
"provenance_captures": [
"min_cells",
"genes_before",
"genes_after"
]
}