scran_qc
Simple quality control on single-cell data
|
Options for per_cell_qc_metrics()
.
More...
#include <per_cell_qc_metrics.hpp>
Public Attributes | |
bool | compute_sum = true |
bool | compute_detected = true |
bool | compute_max_value = true |
bool | compute_max_index = true |
bool | compute_subset_sum = true |
bool | compute_subset_detected = true |
int | num_threads = 1 |
Options for per_cell_qc_metrics()
.
Whether to compute the sum of expression values for each cell. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
Whether to compute the number of detected features for each cell. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
Whether to compute the maximum expression value for each cell. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
Whether to store the index of the feature with the maximum value for each cell. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
Whether to compute the sum expression in each feature subset. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
Whether to compute the number of detected features in each feature subset. This option only affects the per_cell_qc_metrics()
overload that returns a PerCellQcMetricsResults
object.
int scran_qc::PerCellQcMetricsOptions::num_threads = 1 |
Number of threads to use. The parallelization scheme is determined by tatami::parallelize()
.