Skip to content

Commit

Permalink
docs: simplify memory vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Oct 8, 2024
1 parent 4960852 commit b602d72
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions vignettes/memory.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
echo = FALSE,
# eval = FALSE,
message = FALSE,
warning = FALSE
)
Expand Down Expand Up @@ -41,15 +42,16 @@ metadat <- read_tsv(system.file(
select(-sample_id) %>%
rename(sample_id = barcode)
renee_ds <- create_reneeDataSet_from_dataframes(metadat, counts) %>%
calc_cpm() %>%
filter_counts(
sample_names_column = "sample_id",
gene_names_column = "gene_id",
group_column = "treatments_radiation_treatment_type",
label_column = "sample",
columns_to_include = c("gene_id", metadat %>% pull("sample_id")),
make_plots = FALSE
)
calc_cpm()
renee_ds@counts$filt <- renee_ds@counts$raw
# filter_counts(
# sample_names_column = "sample_id",
# gene_names_column = "gene_id",
# group_column = "treatments_radiation_treatment_type",
# label_column = "sample",
# columns_to_include = c("gene_id", metadat %>% pull("sample_id")),
# make_plots = FALSE
# )
```


Expand Down

0 comments on commit b602d72

Please sign in to comment.