scran_qc
Simple quality control on single-cell data
|
Buffers for compute_crispr_qc_metrics()
.
More...
#include <crispr_quality_control.hpp>
Public Attributes | |
Sum_ * | sum |
Detected_ * | detected |
Value_ * | max_value |
Index_ * | max_index |
Buffers for compute_crispr_qc_metrics()
.
Sum_ | Numeric type to store the summed expression. |
Detected_ | Integer type to store the number of cells. |
Value_ | Type of matrix value. |
Index_ | Type of the matrix indices. |
Note that, unlike PerCellQcMetricsBuffers
, all pointers are expected to be non-NULL here.
Sum_* scran_qc::ComputeCrisprQcMetricsBuffers< Sum_, Detected_, Value_, Index_ >::sum |
Pointer to an array of length equal to the number of cells, to store the sum of CRISPR counts per cell. This is analogous to ComputeCrisprQcMetricsResults::sum
.
Detected_* scran_qc::ComputeCrisprQcMetricsBuffers< Sum_, Detected_, Value_, Index_ >::detected |
Pointer to an array of length equal to the number of cells, to store the number of detected guides per cell. This is analogous to ComputeCrisprQcMetricsResults::detected
.
Value_* scran_qc::ComputeCrisprQcMetricsBuffers< Sum_, Detected_, Value_, Index_ >::max_value |
Pointer to an array of length equal to the number of cells, to store the maximum count for each cell. This is analogous to ComputeCrisprQcMetricsResults::max_value
.
Index_* scran_qc::ComputeCrisprQcMetricsBuffers< Sum_, Detected_, Value_, Index_ >::max_index |
Pointer to an array of length equal to the number of cells, to store the index of the most abundant guide for each cell. This is analogous to ComputeCrisprQcMetricsResults::max_index
.