Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jiajic committed Dec 10, 2024
1 parent 91e318a commit 7559059
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,8 @@ reference:
- contents:
- doCellSegmentation
- doCellposeSegmentation
- calculateAffineMatrixFromLandmarks
- doMesmerSegmentation
- doStardistSegmentation
- title: Doublet Detection
desc: Function to detect doublets in raw expression data.
- contents:
Expand All @@ -1019,6 +1020,7 @@ reference:
- compareCellAbundance
- exportGiottoViewer
- interactiveLandmarkSelection
- calculateAffineMatrixFromLandmarks
- title: Interoperability
desc: Convert other type of objects into a Giotto object and vice versa.
- contents:
Expand Down
10 changes: 6 additions & 4 deletions vignettes/deconvolution.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ sign_matrix <- makeSignMatrixDWLSfromMatrix(
This step may take a couple of minutes to run.

```{r, eval=FALSE}
g <- runDWLSDeconv(gobject = g,
sign_matrix = sign_matrix)
g <- runDWLSDeconv(g,
sign_matrix = sign_matrix
)
```

# Visualize
Expand All @@ -116,8 +117,9 @@ Plot the DWLS deconvolution result creating with pie plots showing the proportio

```{r, eval=FALSE}
spatDeconvPlot(g,
show_image = FALSE,
radius = 50)
show_image = FALSE,
radius = 50
)
```

```{r, echo=FALSE, out.width="80%", fig.align='center'}
Expand Down

0 comments on commit 7559059

Please sign in to comment.