diff --git a/configs/installation_scRNA.R b/configs/installation_scRNA.R index dd8ac85..786054b 100644 --- a/configs/installation_scRNA.R +++ b/configs/installation_scRNA.R @@ -40,7 +40,10 @@ retrieve_namespaces( # Viz "RColorBrewer", "patchwork", - "pheatmap" + "pheatmap", + # Day 4 + "presto", + "hdf5r" ) ) diff --git a/polls/16_UMAP.csv b/polls/16_UMAP.csv index c9cb71d..ee1315b 100644 --- a/polls/16_UMAP.csv +++ b/polls/16_UMAP.csv @@ -1,6 +1,6 @@ Activity,Type,Title,Option,Option,Option,Option,Option Poll,Multiple choice,Is t-SNE affected by the seed?,Yes,No,Sometimes?,Only if it’s not set!, -Poll,Multiple choice,Is nrow(X) the number of genes or cells?,Genes,Cells,Degrees of Freedom,, +Poll,Multiple choice,(perplexity constraint) Is nrow(X) the number of genes or cells?,Genes,Cells,Degrees of Freedom,, Poll,Multiple choice,Is UMAP affected more than t-SNE by the seed? Or less?,"UMAP is more sensitive, plot has changed drastically",t-SNE is more sensitive. UMAP emphasis on global structure helps.,Both are equally sensitive,"Being stochastic means that any behaviour can be expected, depends on the seed…", Poll,Multiple choice,Would decreasing the number of PCs fed to the UMAP algorithm change our visualization? Would you say the results are 'better'?,"No, it didn’t change at all","Yes, and it’s better with few PCs","Yes, and it’s worst if we have too few PCs!",, Poll,Multiple choice,Could you have the UMAP projection onto 3 axes instead of 2?,Sure,Why would I?,No,Yeah!! Awesome!!!, diff --git a/rmd/41_BrainIntegration.Rmd b/rmd/41_BrainIntegration.Rmd index ea91836..291db38 100644 --- a/rmd/41_BrainIntegration.Rmd +++ b/rmd/41_BrainIntegration.Rmd @@ -33,8 +33,10 @@ For details and conclusions driven from these results please consult the origina knitr::opts_chunk$set(eval = FALSE, echo = TRUE, format = TRUE, out.width = "100%") ``` -```{r hdf5r} -if (!"hdf5r" %in% installed.packages()) BiocManager::install("hdf5r") +```{r dependencies} +installed_packages <- installed.packages() +if (!"hdf5r" %in% installed_packages) BiocManager::install("hdf5r") +if (!"presto" %in% installed_packages) remotes::install_github('immunogenomics/presto') ``` ```{r setup, echo=TRUE}