The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
An R toolkit for accurate and efficient estimation of cell composition (‘decomposition’) from bulk expression data with single-cell information.
Bisque provides two modes of operation:
This method utilizes single-cell data to decompose bulk expression. We assume that both single-cell and bulk counts are measured from the same tissue. Specifically, the cell composition of the labeled single-cell data should match the expected physiological composition. While we don’t explicitly require matched samples, we expect having samples with both single-cell and bulk expression measured will provide more accurate results.
This method utilizes marker genes alone to decompose bulk expression when a reference profile is not available. Single-cell data is not explicitly required but can be used to identify these marker genes. This method captures relative abundances of a cell type across individuals. Note that these abundances are not proportions, so they cannot be compared between different cell types.
The Bisque R package is available on CRAN
install.packages("BisqueRNA")
as well as Bioconda
conda install r-bisquerna
The package can also be installed from the GitHub repository
::install_github("cozygene/bisque") devtools
You can load Bisque as follows:
library(BisqueRNA)
The two modes of operation described above are called as follows:
<- BisqueRNA::ReferenceBasedDecomposition(bulk.eset, sc.eset, markers) res
<- BisqueRNA::MarkerBasedDecomposition(bulk.eset, markers) res
Each method returns a list of results with estimated cell
proportions/abundances stored in res$bulk.props
.
To see examples of these methods on simulated data, check out the vignette:
browseVignettes("BisqueRNA")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.