scran_qc
Simple quality control on single-cell data
Loading...
Searching...
No Matches
Public Member Functions | List of all members
scran_qc::RnaQcFilters< Float_ > Class Template Reference

Filter for high-quality cells using RNA-based metrics. More...

#include <rna_quality_control.hpp>

Public Member Functions

Float_ get_sum () const
 
Float_ get_detected () const
 
const std::vector< Float_ > & get_subset_proportion () const
 
Float_get_sum ()
 
Float_get_detected ()
 
std::vector< Float_ > & get_subset_proportion ()
 
template<typename Sum_ , typename Detected_ , typename Proportion_ , typename Output_ >
void filter (size_t num, const ComputeRnaQcMetricsBuffers< Sum_, Detected_, Proportion_ > &metrics, Output_ *output) const
 
template<typename Sum_ , typename Detected_ , typename Proportion_ , typename Output_ >
void filter (const ComputeRnaQcMetricsResults< Sum_, Detected_, Proportion_ > &metrics, Output_ *output) const
 
template<typename Output_ = uint8_t, typename Sum_ = double, typename Detected_ = int, typename Proportion_ = double>
std::vector< Output_filter (const ComputeRnaQcMetricsResults< Sum_, Detected_, Proportion_ > &metrics) const
 

Detailed Description

template<typename Float_ = double>
class scran_qc::RnaQcFilters< Float_ >

Filter for high-quality cells using RNA-based metrics.

Template Parameters
Float_Floating-point type for filter thresholds.

Member Function Documentation

◆ get_sum() [1/2]

template<typename Float_ = double>
Float_ scran_qc::RnaQcFilters< Float_ >::get_sum ( ) const
inline
Returns
Lower threshold to apply to the sums.

◆ get_detected() [1/2]

template<typename Float_ = double>
Float_ scran_qc::RnaQcFilters< Float_ >::get_detected ( ) const
inline
Returns
Lower threshold to apply to the number of detected genes.

◆ get_subset_proportion() [1/2]

template<typename Float_ = double>
const std::vector< Float_ > & scran_qc::RnaQcFilters< Float_ >::get_subset_proportion ( ) const
inline
Returns
Vector of length equal to the number of feature subsets, containing the upper threshold to apply to each subset proportion.

◆ get_sum() [2/2]

template<typename Float_ = double>
Float_ & scran_qc::RnaQcFilters< Float_ >::get_sum ( )
inline
Returns
Lower threshold to apply to the sums.

◆ get_detected() [2/2]

template<typename Float_ = double>
Float_ & scran_qc::RnaQcFilters< Float_ >::get_detected ( )
inline
Returns
Lower threshold to apply to the number of detected genes.

◆ get_subset_proportion() [2/2]

template<typename Float_ = double>
std::vector< Float_ > & scran_qc::RnaQcFilters< Float_ >::get_subset_proportion ( )
inline
Returns
Vector of length equal to the number of feature subsets, containing the upper threshold to apply to each subset proportion.

◆ filter() [1/3]

template<typename Float_ = double>
void scran_qc::RnaQcFilters< Float_ >::filter ( size_t  num,
const ComputeRnaQcMetricsBuffers< Sum_, Detected_, Proportion_ > &  metrics,
Output_ output 
) const
inline
Template Parameters
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.
Output_Boolean type to store the high quality flags.
Parameters
numNumber of cells.
metricsA collection of arrays containing RNA-based QC metrics, filled by compute_rna_qc_metrics(). The feature subsets should be the same as those used in the metrics supplied to compute_rna_qc_filters().
[out]outputPointer to an array of length num. On output, this is truthy for cells considered to be of high quality, and false otherwise.

◆ filter() [2/3]

template<typename Float_ = double>
void scran_qc::RnaQcFilters< Float_ >::filter ( const ComputeRnaQcMetricsResults< Sum_, Detected_, Proportion_ > &  metrics,
Output_ output 
) const
inline
Template Parameters
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.
Output_Boolean type to store the high quality flags.
Parameters
metricsRNA-based QC metrics returned by compute_rna_qc_metrics(). The feature subsets should be the same as those used in the metrics supplied to compute_rna_qc_filters().
[out]outputPointer to an array of length num. On output, this is truthy for cells considered to be of high quality, and false otherwise.

◆ filter() [3/3]

template<typename Float_ = double>
template<typename Output_ = uint8_t, typename Sum_ = double, typename Detected_ = int, typename Proportion_ = double>
std::vector< Output_ > scran_qc::RnaQcFilters< Float_ >::filter ( const ComputeRnaQcMetricsResults< Sum_, Detected_, Proportion_ > &  metrics) const
inline
Template Parameters
Output_Boolean type to store the high quality flags.
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.
Parameters
metricsRNA-based QC metrics returned by compute_rna_qc_metrics(). The feature subsets should be the same as those used in the metrics supplied to compute_rna_qc_filters().
Returns
Vector of length num, containing the high-quality calls.

The documentation for this class was generated from the following file: