Description Usage Arguments Details Value Examples
This function runs DeconRNAseq with default parameters such that it is compatible with CRAN and scMappR
1 2 3 4 5 6 7 8 9 | DeconRNAseq_CRAN(
datasets,
signatures,
proportions = NULL,
checksig = FALSE,
known.prop = FALSE,
use.scale = TRUE,
fig = FALSE
)
|
datasets |
Normalized RNA-seq dataset |
signatures |
Signature matrix of odds ratios |
proportions |
If cell-type proportion is already inputted - always NULL for scMappR |
checksig |
Check to see if plotting is significant - always false for scMappR |
known.prop |
If proportions were known - always false for scMappR |
use.scale |
Scale and center value - always TRUE for scMappR |
fig |
Make figures - always FALSE for scMappR |
This is the exact same function as the primary function in the Bioconductor package, DeconRNAseq (PMID: 23428642) except it is now compatible with CRAN packages.
DeconRNAseq_CRAN
Estimated cell-type proportions with DeconRNAseq.
1 2 3 4 5 6 7 | data(PBMC_example)
bulk_DE_cors <- PBMC_example$bulk_DE_cors
bulk_normalized <- PBMC_example$bulk_normalized
odds_ratio_in <- PBMC_example$odds_ratio_in
out <- DeconRNAseq_CRAN(as.data.frame(bulk_normalized), as.data.frame(odds_ratio_in))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.