-
Notifications
You must be signed in to change notification settings - Fork 1
snakemake test #9
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,6 +27,10 @@ suppressPackageStartupMessages({ | |||||||||||||
| library(UpSetR) | ||||||||||||||
| library(data.table) | ||||||||||||||
| library(patchwork) | ||||||||||||||
| library(pheatmap) | ||||||||||||||
| library(scran) | ||||||||||||||
| library(scater) | ||||||||||||||
| library(ggh4x) | ||||||||||||||
| }) | ||||||||||||||
|
|
||||||||||||||
| wd <- params$working_dir | ||||||||||||||
|
|
@@ -291,3 +295,112 @@ ggplot(umi_df, aes(x = log10(total_counts + 1), | |||||||||||||
| x = "log10(total counts + 1)", y = "Density", | ||||||||||||||
| colour = NULL, linetype = NULL) | ||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| ## Cell-level and gene-level pseudo-bulk comparison | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
| ```{r pb correlation, fig.width=12, fig.height=10} | ||||||||||||||
|
||||||||||||||
| ```{r pb correlation, fig.width=12, fig.height=10} | |
| ```{r pb_correlation, fig.width=12, fig.height=10} |
Copilot
AI
Apr 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this theme() call there are two issues that will break knitting: (1) panel.spacing = unit(...) will error unless unit is in scope (use grid::unit(...) or attach grid), and (2) there is a trailing comma after panel.border = ... which is a syntax error in R. Please fix both so the chunk runs.
| panel.spacing = unit(0.8, "lines"), | |
| aspect.ratio = 1, | |
| panel.border = element_rect(color = "black", fill = NA), | |
| panel.spacing = grid::unit(0.8, "lines"), | |
| aspect.ratio = 1, | |
| panel.border = element_rect(color = "black", fill = NA) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
02_comparison.Rmdnow loads/uses additional packages (e.g.,pheatmapandscran::modelGeneVar). This conda env addsr-ggh4xbut still doesn't includer-pheatmaporbioconductor-scran, so the report will fail at runtime. Please add the missing dependencies here (or remove the new imports if they aren't needed).