You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.MD
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
## MINOR CHANGES
4
4
5
+
* Added support for Visium data ingestion and QC reporting (PR #16).
6
+
7
+
# openpipeline_qc 0.2.0
8
+
9
+
## MINOR CHANGES
10
+
5
11
*`src/workflows/generate_qc_report`: Add min and max constraints to `--max_samples_per_report`, to limit the number of samples per report between 1 and 20 (PR #11).
6
12
7
13
* Update `openpipeline` dependency to v4.0.0 and `siqc` to version v0.2.0 (PR #15).
"description": "Total number of RNA molecules detected per cell. Low values typically indicate empty droplets or low-quality cells that should be filtered out.",
20
+
"cutoffMin": null,
21
+
"cutoffMax": null,
22
+
"zoomMax": null,
23
+
"nBins": 50,
24
+
"groupBy": "sample_id",
25
+
"yAxisType": "linear"
26
+
},
27
+
{
28
+
"type": "histogram",
29
+
"visualizationType": "histogram",
30
+
"field": "num_nonzero_vars",
31
+
"label": "Number of non-zero genes per cell",
32
+
"description": "Count of unique genes detected in each cell. Low gene counts often indicate poor-quality cells.",
33
+
"cutoffMin": null,
34
+
"cutoffMax": null,
35
+
"zoomMax": null,
36
+
"nBins": 50,
37
+
"groupBy": "sample_id",
38
+
"yAxisType": "linear"
39
+
},
40
+
{
41
+
"type": "histogram",
42
+
"visualizationType": "histogram",
43
+
"field": "fraction_mitochondrial",
44
+
"label": "Fraction UMI of mitochondrial genes per cell",
45
+
"description": "Proportion of cell's RNA from mitochondrial genes.",
46
+
"cutoffMin": null,
47
+
"cutoffMax": null,
48
+
"nBins": 50,
49
+
"groupBy": "sample_id",
50
+
"yAxisType": "linear"
51
+
},
52
+
{
53
+
"type": "histogram",
54
+
"visualizationType": "histogram",
55
+
"field": "fraction_ribosomal",
56
+
"label": "Fraction UMI of ribosomal genes per cell",
57
+
"description": "Proportion of cell's RNA from ribosomal protein genes. Extreme values may indicate stress responses or cell cycle abnormalities.",
0 commit comments