Anyone encounter the issue that it takes very long time (several days) to run commands in RSoptSC; ClusterCells run several days and still not finished, and already used doParallel package trying to run the command in parallel.
Show as much of your code as you can. With time intensive functions, always run the function on a subset of the data to evaluate how long things take as well as ensuring your dataset fits the function's expectations - you don't want to find out a week from now that your dataset is missing a column that the function needs, and you'll need to re-run the entire thing because you forgot a 2 minute pre-processing step.
It's the same data structure as the tutorial of the input, dgCMatrix, and the input is near 20,000 genes x 15,000 cells.
filtered_data may run 10h, S <- SimilarityM() and RepresentationMap() can take 1-2 h to run, while the ClusterCells() can take more than 3 days and still not finish.
Hi, I am working on joint genotyping using GenotypeGVCF with around 850 samples. Interval.list contains 8 chromosomes and several contigs. The script is running since …
I analyse microbiome data using library(phyloseq) library(microbiome) library(DirichletMultinomial) and several other libraries. Fitting Dirichlet-Multinomial models to count data `dmn {DirichletMultinomial}` takes quite a long time. …
I am trying to run `clusterProfiler::enrichGO()` for 10 Human Ensemble IDs but its getting very slow. Sometimes it takes 15 minutes and other time more …
Show as much of your code as you can. With time intensive functions, always run the function on a subset of the data to evaluate how long things take as well as ensuring your dataset fits the function's expectations - you don't want to find out a week from now that your dataset is missing a column that the function needs, and you'll need to re-run the entire thing because you forgot a 2 minute pre-processing step.
Thanks a lot!
It's the same data structure as the tutorial of the input,
dgCMatrix, and the input is near 20,000 genes x 15,000 cells. filtered_data may run 10h,S <- SimilarityM()andRepresentationMap()can take 1-2 h to run, while theClusterCells()can take more than 3 days and still not finish.You should email the authors and point them to this post. That might help get a solution faster
Sure, thank you very much! Appreciate!