Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cytoviewer citation update #87

Merged
merged 4 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions 06-quality_control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ sizes.
An easier and interactive way of observing segmentation quality is to use the
interactive image viewer provided by the
[cytoviewer](https://github.com/BodenmillerGroup/cytoviewer) R/Bioconductor
package [@Meyer2023]. Under "Image-level" > "Basic controls", up to six markers
package [@Meyer2024]. Under "Image-level" > "Basic controls", up to six markers
can be selected for visualization. The contrast of each marker can be adjusted.
Under "Image-level" > "Advanced controls", click the "Show cell outlines" box
to outline segmented cells on the images.
Expand All @@ -72,11 +72,12 @@ library(cytoviewer)

app <- cytoviewer(image = images,
mask = masks,
object = spe,
cell_id = "ObjectNumber",
img_id = "sample_id")

if (interactive()) {
shiny::runApp(app, launch.browser = TRUE)
shiny::runApp(app)
}
```

Expand Down Expand Up @@ -395,7 +396,7 @@ samples or batches of samples. Observing potential staining differences can be
crucial to assess data quality. We will use ridgeline visualizations to check
differences in staining patterns:

```{r ridges, message=FALSE, fig.width=7, fig.height=25}
```{r ridges, message=FALSE, warning = FALSE, fig.width=7, fig.height=25}
nilseling marked this conversation as resolved.
Show resolved Hide resolved
multi_dittoPlot(spe, vars = rownames(spe)[rowData(spe)$use_channel],
group.by = "patient_id", plots = "ridgeplot",
assay = "exprs",
Expand Down
Loading
Loading