-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-parallelization.Rmd
29 lines (20 loc) · 1.41 KB
/
01-parallelization.Rmd
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
# Parallelization
Whenever possible, *CopyKit* uses the [BiocParallel](https://www.bioconductor.org/packages/devel/bioc/vignettes/BiocParallel/inst/doc/Introduction_To_BiocParallel.pdf) framework.
Running parallel processes is highly recommended to speed up *CopyKit* calculations.
Make sure to read the BiocParallel [vignette](https://www.bioconductor.org/packages/devel/bioc/vignettes/BiocParallel/inst/doc/Introduction_To_BiocParallel.pdf) to choose the best parameters for your machine and OS.
Use `BiocParallel::register()` function to register the number of workers (threads) desired.
To visually monitor the progress, you can use the argument *progressbar*.
```{r registering_fake, eval=FALSE}
library(BiocParallel)
register(MulticoreParam(progressbar = T, workers = 8), default = T)
```
```{r registering_true, echo=FALSE}
library(BiocParallel)
register(MulticoreParam(progressbar = F, workers = 30), default = T)
```
Confirm parameters:
```{r default, eval=FALSE}
BiocParallel::bpparam()
```
*Note about plotHeatmap() function parallelization*:
**plotHeatmap()** uses a different framework and requires the argument *n_threads* to set the number of threads when in use with the argument *order_cells = hclust*. This is to speed up the calculation of a distance matrix. Using more threads when ordering the heatmap with *hclust* will significantly speed up the plotting of the heatmap. See example in plotHeatmap help.