Last updated: 2022-02-10

Checks: 7 0

Knit directory: single-cell-topics/analysis/

This reproducible R Markdown analysis was created with workflowr (version 1.7.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(1) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version 7742b51. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    data/droplet.RData
    Ignored:    data/pbmc_68k.RData
    Ignored:    data/pbmc_purified.RData
    Ignored:    data/pulseseq.RData
    Ignored:    output/droplet/diff-count-droplet.RData
    Ignored:    output/droplet/fits-droplet.RData
    Ignored:    output/droplet/rds/
    Ignored:    output/pbmc-purified/fits-pbmc-purified.RData
    Ignored:    output/pbmc-purified/rds/
    Ignored:    output/pulseseq/diff-count-pulseseq.RData
    Ignored:    output/pulseseq/fits-pulseseq.RData
    Ignored:    output/pulseseq/rds/
    Ignored:    output/sims/

Untracked files:
    Untracked:  analysis/clustering-droplet.rds
    Untracked:  analysis/de_analysis_detailed_look_cache/
    Untracked:  analysis/de_analysis_detailed_look_more_cache/
    Untracked:  analysis/droplet_rare.Rmd
    Untracked:  analysis/droplet_rare.Rmd~
    Untracked:  analysis/structure-plot-pulseseq-merged.png
    Untracked:  plots/

Unstaged changes:
    Modified:   analysis/index.Rmd
    Modified:   analysis/temp.R

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (analysis/de_analysis_droplet.Rmd) and HTML (docs/de_analysis_droplet.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
Rmd 7742b51 Peter Carbonetto 2022-02-10 workflowr::wflow_publish(“de_analysis_droplet.Rmd”)
html 6542952 Peter Carbonetto 2022-02-07 Create droplet volcano plots for paper in de_analysis_droplet analysis.
Rmd 726bd7a Peter Carbonetto 2022-02-07 workflowr::wflow_publish(“de_analysis_droplet.Rmd”, verbose = TRUE)
html cdfb0dc Peter Carbonetto 2022-02-07 Added volcano plots to de_analysis_droplet analysis.
Rmd 0796a94 Peter Carbonetto 2022-02-07 workflowr::wflow_publish(“de_analysis_droplet.Rmd”, verbose = TRUE)
Rmd 6499def Peter Carbonetto 2022-02-02 Working on exploratory analysis de_analysis_pulseseq.R.
html 124013c Peter Carbonetto 2022-01-30 Revised the de_analysis_droplet volcano plots.
Rmd 154843c Peter Carbonetto 2022-01-30 workflowr::wflow_publish(“de_analysis_droplet.Rmd”)
Rmd c0803ab Peter Carbonetto 2022-01-30 A couple small edits.
html 515f2b2 Peter Carbonetto 2022-01-30 First build of de_analysis_droplet page.
Rmd b08d530 Peter Carbonetto 2022-01-30 workflowr::wflow_publish(“de_analysis_droplet.Rmd”)
Rmd 618a9e2 Peter Carbonetto 2022-01-30 workflowr::wflow_publish(“index.Rmd”)

Here we summarize the results of performing DE analysis on the droplet data using the topic model with \(K = 7\) topics.

Load the packages used in the analysis.

library(fastTopics)
library(ggplot2)
library(cowplot)

Load the results of the differential expression analysis.

load("../output/droplet/de-droplet.RData")

For reference, here is the Structure plot from an earlier analysis of the droplet data:

These volcano plots summarize the results off the DE analysis after merging topics 5 and 7:

p1 <- volcano_plot(de_merged,ymax = 100,k = "k1")
p2 <- volcano_plot(de_merged,ymax = 200,k = "k2")
p3 <- volcano_plot(de_merged,ymax = 200,k = "k3")
p4 <- volcano_plot(de_merged,ymax = 200,k = "k4")
p5 <- volcano_plot(de_merged,ymax = 200,k = "k5+k7")
p6 <- volcano_plot(de_merged,ymax = 100,k = "k6")
plot_grid(p1,p2,p3,p4,p5,p6,nrow = 3,ncol = 2)

Version Author Date
6542952 Peter Carbonetto 2022-02-07
cdfb0dc Peter Carbonetto 2022-02-07
124013c Peter Carbonetto 2022-01-30
515f2b2 Peter Carbonetto 2022-01-30

Judging by the most overexpressed genes in these volcano plots, the topics capture goblet cells (topic 1), basal cells (topic 2), “hillock” club cells (topic 4), ciliated, tuft and neuroendocrine cells (topic 6), and club cells (topics 5 + 7).

Topic 7 is driven by variation in expression of Scgb1a1 in club cells:

p7 <- volcano_plot(de,k = "k5",ymax = 200)
p8 <- volcano_plot(de,k = "k7",ymax = 200)
plot_grid(p7,p8)

Version Author Date
6542952 Peter Carbonetto 2022-02-07
cdfb0dc Peter Carbonetto 2022-02-07
124013c Peter Carbonetto 2022-01-30
515f2b2 Peter Carbonetto 2022-01-30

These same results can also be explored in interactive volcano plots:

volcano_plotly(de_merged,k = "k1",ymax = 100,
               file = "volcano_plot_droplet_goblet.html",
               width = 600,height = 600)
volcano_plotly(de_merged,k = "k2",ymax = 200,
               file = "volcano_plot_droplet_basal.html",
               width = 600,height = 600)
volcano_plotly(de_merged,k = "k3",ymax = 200,
               file = "volcano_plot_droplet_k3.html",
               width = 600,height = 600)
volcano_plotly(de_merged,k = "k4",ymax = 200,
               file = "volcano_plot_droplet_hillock.html",
               width = 600,height = 600)
volcano_plotly(de_merged,k = "k5+k7",ymax = 200,
               file = "volcano_plot_droplet_club.html",
               width = 600,height = 600)
volcano_plotly(de_merged,k = "k6",ymax = 100,
               file = "volcano_plot_droplet_rare.html",
               width = 600,height = 600)
volcano_plotly(de,k = "k5",ymax = 200,
               file = "volcano_plot_droplet_club_splunc1.html",
               width = 600,height = 600)
volcano_plotly(de,k = "k7",ymax = 200,
               file = "volcano_plot_droplet_club_scgb1a1.html",
               width = 600,height = 600)

You can explore these interactive volcano plots by following these links:


sessionInfo()
# R version 3.6.2 (2019-12-12)
# Platform: x86_64-apple-darwin15.6.0 (64-bit)
# Running under: macOS Catalina 10.15.7
# 
# Matrix products: default
# BLAS:   /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRblas.0.dylib
# LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib
# 
# locale:
# [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
# 
# attached base packages:
# [1] stats     graphics  grDevices utils     datasets  methods   base     
# 
# other attached packages:
# [1] cowplot_1.0.0     ggplot2_3.3.5     fastTopics_0.6-98
# 
# loaded via a namespace (and not attached):
#  [1] mcmc_0.9-6         fs_1.3.1           progress_1.2.2     httr_1.4.2        
#  [5] rprojroot_1.3-2    tools_3.6.2        backports_1.1.5    utf8_1.1.4        
#  [9] R6_2.4.1           irlba_2.3.3        uwot_0.1.10        DBI_1.1.0         
# [13] lazyeval_0.2.2     colorspace_1.4-1   withr_2.4.2        tidyselect_1.1.1  
# [17] prettyunits_1.1.1  compiler_3.6.2     git2r_0.26.1       quantreg_5.54     
# [21] SparseM_1.78       plotly_4.9.2       labeling_0.3       scales_1.1.0      
# [25] SQUAREM_2017.10-1  quadprog_1.5-8     pbapply_1.5-1      mixsqp_0.3-46     
# [29] systemfonts_1.0.2  stringr_1.4.0      digest_0.6.23      rmarkdown_2.11    
# [33] MCMCpack_1.4-5     pkgconfig_2.0.3    htmltools_0.4.0    fastmap_1.0.1     
# [37] invgamma_1.1       highr_0.8          htmlwidgets_1.5.1  rlang_0.4.11      
# [41] shiny_1.4.0        jquerylib_0.1.4    generics_0.0.2     farver_2.0.1      
# [45] jsonlite_1.7.2     crosstalk_1.0.0    dplyr_1.0.7        magrittr_2.0.1    
# [49] Matrix_1.2-18      Rcpp_1.0.7         munsell_0.5.0      fansi_0.4.0       
# [53] lifecycle_1.0.0    stringi_1.4.3      whisker_0.4        yaml_2.2.0        
# [57] MASS_7.3-51.4      Rtsne_0.15         grid_3.6.2         parallel_3.6.2    
# [61] promises_1.1.0     ggrepel_0.9.1      crayon_1.4.1       lattice_0.20-38   
# [65] hms_1.1.0          knitr_1.37         pillar_1.6.2       glue_1.4.2        
# [69] evaluate_0.14      data.table_1.12.8  RcppParallel_4.4.2 vctrs_0.3.8       
# [73] httpuv_1.5.2       MatrixModels_0.4-1 gtable_0.3.0       purrr_0.3.4       
# [77] tidyr_1.1.3        assertthat_0.2.1   ashr_2.2-51        xfun_0.29         
# [81] mime_0.8           xtable_1.8-4       coda_0.19-3        later_1.0.0       
# [85] ragg_0.3.1         viridisLite_0.3.0  truncnorm_1.0-8    tibble_3.1.3      
# [89] workflowr_1.7.0    ellipsis_0.3.2