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
# Disable seed generator such that the lower component of the mixture corresponding to MNAR is stochastic and returns a different results with each call (Note this is not recommended for reproducibility)
# Requires python. See Manual for more information.
72
-
top.hvp <- findVariableFeatures(xna)
73
-
computeStructuralMetrics(xcomplete,
74
-
group,
75
-
xna[rownames(top.hvp)[1:50],],
76
-
k = 2)
77
85
78
86
79
87
```
80
88
89
+
News
90
+
---------------------
91
+
**22.03.2025**
92
+
The following changes have been made to function calls:
93
+
- The use of 'group' is now deprecated. msImpute now allows specifying a design matrix (which has to have zero intercept) to accommodate more complex missing value (MV) data generation processes such as LC batch.
94
+
- The new version models log-intensity as a mixture of two normal distributions, one for the MAR and one for the MNAR component. The weights of the mixture (equivalent to `a` or `alpha` in the old API) are determined according to a Dirichlet distribution learned from mv patterns, so you no longer need to specify the weights of the two distributions manually.
95
+
- The new version also allows for retaining peptides/proteins with very few measurements (e.g. less than 4) via `relax_min_obs`.
96
+
- In the old API, imputation was set to be deterministic for reproducibility purposes. If you wish to keep it stochastic for the lower component of the mixture that corresponds to MNAR distribution (sampling from down-shifted distribution) please set the use_seed argument.
97
+
98
+
The following dependencies were removed:
99
+
- reticulate
100
+
- scran
101
+
102
+
The following functions are deprecated:
103
+
-`computeStructuralMetrics`
104
+
81
105
Tutorials
82
106
---------------------
83
107
Example workflows can be found under `figures/` in the [reproducibility repository](https://github.com/DavisLaboratory/msImpute-reproducibility) associated with the manuscript.
0 commit comments