What are the gains of running compute_for_mcview on a data set before importing it into an MCView project? Is it just a matter of computing outliers independently from MCView::import_dataset ?
I am encountering issues where a massive number of threads are triggered by BLAS (issue 24) when running such function (compute_for_mcview) so I would like to understand the difference between loading a data set with and without this step.
This is an example of the python command that clogs BLAS
outliers = mc.pl.compute_for_mcview(adata=clean, gdata=metacells, random_seed=123456, compute_var_var_similarity=dict(top=50, bottom=50))
What are the gains of running
compute_for_mcviewon a data set before importing it into an MCView project? Is it just a matter of computing outliers independently fromMCView::import_dataset?I am encountering issues where a massive number of threads are triggered by BLAS (issue 24) when running such function (
compute_for_mcview) so I would like to understand the difference between loading a data set with and without this step.This is an example of the python command that clogs BLAS