Skip to content

Commit bcfa994

Browse files
committed
Disable forking in vignettes
to prevent make website hanging forever
1 parent cae43c8 commit bcfa994

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

vignettes/SeuratIntegrate.Rmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,9 @@ DimPlot(liver_small, group.by = cell.var)
237237

238238
# Integration with SeuratIntegrate
239239

240+
```{r, echo=FALSE}
241+
options(parallelly.fork.enable = FALSE)
242+
```
240243

241244
```{r integrate, warning=FALSE}
242245
liver_small <-

vignettes/introduction.Rmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,11 @@ seu <- DoIntegrate(
266266
confusion with `Seurat::HarmonyIntegration()`.
267267

268268
### Integration part 2) Using python-based methods
269+
```{r, echo=FALSE}
270+
options(parallelly.fork.enable = FALSE)
271+
```
272+
273+
269274
```{r integrate-python-methods, warning=FALSE}
270275
seu <- DoIntegrate(
271276
object = seu,

0 commit comments

Comments
 (0)