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

quick upgrade #148

Merged
merged 3 commits into from
Jun 21, 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
5 changes: 4 additions & 1 deletion configs/installation_scRNA.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ retrieve_namespaces(
# Viz
"RColorBrewer",
"patchwork",
"pheatmap"
"pheatmap",
# Day 4
"presto",
"hdf5r"
)
)

Expand Down
2 changes: 1 addition & 1 deletion polls/16_UMAP.csv
Original file line number Diff line number Diff line change
@@ -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!!!,
6 changes: 4 additions & 2 deletions rmd/41_BrainIntegration.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Loading