Skip to content

Commit a447552

Browse files
authored
Fix: Reporting correct gene number (#4)
1 parent b689bfe commit a447552

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

inst/Rmd/single_sample/01_input_qc_children/gene_filtering_custom.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ janitor::tabyl(sce_custom_filter_rowSums == 0) %>%
1111
scdrake::render_bootstrap_table(full_width = FALSE, position = "left")
1212
```
1313

14-
**Removing `r sum(!drake::readd(sce_qc_gene_filter, path = drake_cache_dir))` genes with UMI per cell less than
14+
**Removing `r sum(drake::readd(sce_qc_gene_filter, path = drake_cache_dir))` genes with UMI per cell less than
1515
`r cfg$MIN_UMI` and expressed in less than `r cfg$MIN_RATIO_CELLS * 100` % of all cells.**
1616

1717
Info on custom filtered dataset:

inst/Rmd/single_sample/01_input_qc_children/gene_filtering_qc.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ janitor::tabyl(sce_qc_filter_rowSums == 0) %>%
1010
scdrake::render_bootstrap_table(full_width = FALSE, position = "left")
1111
```
1212

13-
**Removing `r sum(!drake::readd(sce_qc_gene_filter, path = drake_cache_dir))` genes with UMI per cell less than
13+
**Removing `r sum(drake::readd(sce_qc_gene_filter, path = drake_cache_dir))` genes with UMI per cell less than
1414
`r cfg$MIN_UMI` and expressed in less than `r cfg$MIN_RATIO_CELLS * 100` % of all cells.**
1515

1616
Info on filtered dataset:

0 commit comments

Comments
 (0)