-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
parametrize the operator that joins cell QC filters (| or &) (#7)
* parametrize the operator that joins cell QC filters (| or &) * use AND/OR in docs * validate DATASET_SENSITIVE_FILTERS_OPERATOR and CUSTOM_FILTERS_OPERATOR * bump version, update README
- Loading branch information
Showing
12 changed files
with
89 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,8 +108,8 @@ You can pull the Docker image with the latest stable `{scdrake}` version | |
using | ||
|
||
``` bash | ||
docker pull jirinovo/scdrake:1.5.1 | ||
singularity pull docker:jirinovo/scdrake:1.5.1 | ||
docker pull jirinovo/scdrake:1.5.2 | ||
singularity pull docker:jirinovo/scdrake:1.5.2 | ||
``` | ||
|
||
or list available versions in [our Docker Hub | ||
|
@@ -151,7 +151,7 @@ docker run -d \ | |
-e USERID=$(id -u) \ | ||
-e GROUPID=$(id -g) \ | ||
-e PASSWORD=1234 \ | ||
jirinovo/scdrake:1.5.1 | ||
jirinovo/scdrake:1.5.2 | ||
``` | ||
|
||
For Singularity, also make shared directories and execute the container | ||
|
@@ -234,7 +234,7 @@ for `{scdrake}` and you can use it to install all dependencies by | |
|
||
``` r | ||
## -- This is a lockfile for the latest stable version of scdrake. | ||
download.file("https://raw.githubusercontent.com/bioinfocz/scdrake/1.5.1/renv.lock") | ||
download.file("https://raw.githubusercontent.com/bioinfocz/scdrake/1.5.2/renv.lock") | ||
## -- You can increase the number of CPU cores to speed up the installation. | ||
options(Ncpus = 2) | ||
renv::restore(lockfile = "renv.lock", repos = BiocManager::repositories()) | ||
|
@@ -254,7 +254,7 @@ installed from the lockfile). | |
|
||
``` r | ||
remotes::install_github( | ||
"bioinfocz/[email protected].1", | ||
"bioinfocz/[email protected].2", | ||
dependencies = FALSE, upgrade = FALSE, | ||
keep_source = TRUE, build_vignettes = TRUE, | ||
repos = BiocManager::repositories() | ||
|
@@ -321,7 +321,7 @@ vignette](https://bioinfocz.github.io/scdrake/articles/scdrake.html) | |
## Vignettes and other readings | ||
|
||
See <https://bioinfocz.github.io/scdrake> for a documentation website of | ||
the latest stable version (1.5.1) where links to vignettes below become | ||
the latest stable version (1.5.2) where links to vignettes below become | ||
real :-) | ||
|
||
See <https://bioinfocz.github.io/scdrake/dev> for a documentation | ||
|
4 changes: 3 additions & 1 deletion
4
inst/Rmd/single_sample/01_input_qc_children/cell_filtering_custom.Rmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
Filter dataset based on custom (fixed) thresholds of QC metrics: | ||
Filter cells based on custom (fixed) thresholds of QC metrics: | ||
|
||
- <Min; Max> UMI per cell: <`r cfg$MIN_UMI_CF`; `r as.character(cfg$MAX_UMI_CF)`> | ||
- Min. number of features (genes) detected: `r cfg$MIN_FEATURES` | ||
- Max. ratio of mitochondrial genes expression: `r cfg$MAX_MITO_RATIO` | ||
|
||
`r get_used_qc_filters_operator_desc(cfg$CUSTOM_FILTERS_OPERATOR)` | ||
|
||
**Removing `r sum(custom_filter)` low quality cells based on custom thresholds.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters