scran_aggregate
Aggregate expression values across cells
|
Results of aggregate_across_cells()
.
More...
#include <aggregate_across_cells.hpp>
Public Attributes | |
std::vector< std::vector< Sum_ > > | sums |
std::vector< std::vector< Detected_ > > | detected |
Results of aggregate_across_cells()
.
Sum_ | Type of the sum, should be numeric. |
Detected_ | Type for the number of detected cells, usually integer. |
std::vector<std::vector<Sum_> > scran_aggregate::AggregateAcrossCellsResults< Sum_, Detected_ >::sums |
Vector of length equal to the number of factor levels. Each inner vector is of length equal to the number of genes. Each entry contains the summed expression across all cells in the corresponding level for each gene.
If AggregateAcrossCellsOptions::compute_sums = false
, this vector is empty.
std::vector<std::vector<Detected_> > scran_aggregate::AggregateAcrossCellsResults< Sum_, Detected_ >::detected |
Vector of length equal to the number of factor levels. Each inner vector is of length equal to the number of genes. Each entry contains the number of cells in the corresponding level with detected expression for each gene.
If AggregateAcrossCellsOptions::compute_detected = false
, this vector is empty.