scran_qc
Simple quality control on single-cell data
|
Buffers for compute_rna_qc_metrics()
.
More...
#include <rna_quality_control.hpp>
Public Attributes | |
Sum_ * | sum = NULL |
Detected_ * | detected = NULL |
std::vector< Proportion_ * > | subset_proportion |
Buffers for compute_rna_qc_metrics()
.
Sum_ | Numeric type to store the summed expression. |
Detected_ | Integer type to store the number of cells. |
Proportion_ | Floating-point type to store the proportions. |
Note that, unlike PerCellQcMetricsBuffers
, all pointers are expected to be non-NULL here.
Sum_* scran_qc::ComputeRnaQcMetricsBuffers< Sum_, Detected_, Proportion_ >::sum = NULL |
Pointer to an array of length equal to the number of cells, to store the sum of counts in each cell. This is analogous to ComputeRnaQcMetricsResults::sum
.
Detected_* scran_qc::ComputeRnaQcMetricsBuffers< Sum_, Detected_, Proportion_ >::detected = NULL |
Pointer to an array of length equal to the number of cells, to store the number of detected genes in each cell. This is analogous to ComputeRnaQcMetricsResults::detected
.
std::vector<Proportion_*> scran_qc::ComputeRnaQcMetricsBuffers< Sum_, Detected_, Proportion_ >::subset_proportion |
Vector of pointers of length equal to the number of feature subsets. Each entry should point to an array of length equal to the number of cells, to store the subset proportion in each cell. This is analogous to ComputeRnaQcMetricsResults::subset_proportion
.