Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
290b2f4
Add first stab at gating
ttriche Nov 15, 2021
650d743
Update project2_tim.Rmd
ttriche Nov 15, 2021
efed928
Update project2_tim.Rmd
ttriche Nov 15, 2021
b3e8602
Update project2_tim.Rmd
ttriche Nov 15, 2021
a482f1b
update vignette chunks
ttriche Nov 17, 2021
c122932
adding output
ttriche Nov 17, 2021
59abc3a
add updated run output
ttriche Nov 17, 2021
aa82b19
add UMAP output and R code
ttriche Nov 17, 2021
307032d
add UMAP hidey-ho output
ttriche Nov 17, 2021
7beae0b
update mixture class assignments and logic
ttriche Nov 17, 2021
862f50a
deterministically label the mixture components
ttriche Nov 17, 2021
1a93d34
rerun mixture labeling from scratch...
ttriche Nov 17, 2021
87f6bcc
remove kable for table
ttriche Nov 17, 2021
81e1898
brute-force label the mixture components
ttriche Nov 17, 2021
508890c
add how-to figure for requesting a code review, part 1
ttriche Nov 17, 2021
0669a49
address code review issues from @jamespeapan and @svad98
ttriche Nov 20, 2021
37d0b77
Address @svad8's issue with tidySingleCellExperiment
ttriche Nov 20, 2021
1e26320
clear up the text and links towards the end
ttriche Nov 20, 2021
ddea932
Reorganize this tome a little bit for clarity
ttriche Nov 20, 2021
8dc31a2
Clarify tidySCE section
ttriche Nov 20, 2021
d159306
tidy up a bit more, choose words more carefully
ttriche Nov 20, 2021
5879353
rerun vignette from a cold start
ttriche Nov 20, 2021
2e1cc0f
Correct a statement about 100x100 samples (it's 200)
ttriche Nov 20, 2021
3c602a1
Tidy up a few more bits for clarity
ttriche Nov 20, 2021
424834b
Once more, with feeling
ttriche Nov 20, 2021
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
11 changes: 9 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Description: For the practical sessions in Experimental Design & Biostats 2021,
Rstudio to \url{https://rpubs.com/}, so all that's left is to make
sure that dependencies for assignments are in place. This package
also includes a few convenience functions (phelp, lsos, etc.).
Version: 0.11.15
Date: 2021-11-15
Version: 0.11.20
Date: 2021-11-20
Authors@R: person("Triche", "Lab", role=c("aut", "cre"), email="trichelab@gmail.com")
Author: Triche Lab [aut, cre]
Maintainer: Triche Lab <trichelab@gmail.com>
Expand All @@ -23,6 +23,7 @@ Depends:
R (>= 4.0.0),
conflicted,
ggforce,
gtools,
googlesheets4,
moderndive,
tidyverse,
Expand All @@ -31,13 +32,15 @@ Imports:
BiocManager,
broom,
broom.mixed,
coefplot,
corrr,
datasets,
devtools,
dials,
downlit,
dplyr,
factoextra,
forcats,
ggforce,
ggplot2,
ggthemes,
Expand Down Expand Up @@ -67,11 +70,15 @@ Imports:
rpart,
rpart.plot,
rsample,
scater,
scico,
SingleCellExperiment,
skeletor,
skimr,
SummarizedExperiment,
tibble,
tidyr,
tidySingleCellExperiment,
tidytext,
tidyverse,
tune,
Expand Down
Binary file added vignettes/figure/SingleCellExperiment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/figure/SummarizedExperiment.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions vignettes/project2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ library(tidyverse)
tibble(name = cells) %>% # stringr::str_split takes strings and a split pattern
mutate(experiment = str_split(name, "\\.", simplify=TRUE)[,1]) %>% # column 1
mutate(method = str_split(name, "\\.", simplify=TRUE)[,2]) %>% # column 2
mutate(cell = str_split(name, "\\.", simplify=TRUE)[,3]) -> # column 3
mutate(barcode = str_split(name, "\\.", simplify=TRUE)[,3]) -> # column 3
celltibble # the result is assigned to the object `celltibble`

# how many cells per mixture were run with each method?
Expand Down Expand Up @@ -328,7 +328,7 @@ if (FALSE) { # if you want to recreate the SingleCellExperiment:
}

# if you just want to load it
tidybarnyard <- tidy(readRDS(url("https://ttriche.github.io/RDS/barnyard.rds")))
tidybarnyard <- readRDS(url("https://ttriche.github.io/RDS/tidybarnyard.rds"))
show(tidybarnyard)

```
Expand Down
Binary file added vignettes/project2_chunks/figure/CITEseq.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/UMAP.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/project2_chunks/figure/bygenome-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/gating-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/mixlabels-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/pullrequest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/remix-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/remix-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/remix-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vignettes/project2_chunks/figure/sinaplot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading