|
scran_markers
Marker detection for single-cell data
|
Options for summarize_effects().
More...
#include <summarize_effects.hpp>
Public Attributes | |
| int | num_threads = 1 |
| bool | compute_min = true |
| bool | compute_mean = true |
| bool | compute_median = true |
| bool | compute_max = true |
| bool | compute_min_rank = true |
| bool | min_rank_preserve_ties = false |
Options for summarize_effects().
| bool scran_markers::SummarizeEffectsOptions::compute_max = true |
Whether to report the maximum of the effect sizes for each group. Only affects the summarize_effects() overload that returns a vector of SummaryResults.
| bool scran_markers::SummarizeEffectsOptions::compute_mean = true |
Whether to report the mean of the effect sizes for each group. Only affects the summarize_effects() overload that returns a vector of SummaryResults.
| bool scran_markers::SummarizeEffectsOptions::compute_median = true |
Whether to report the median of the effect sizes for each group. Only affects the summarize_effects() overload that returns a vector of SummaryResults.
| bool scran_markers::SummarizeEffectsOptions::compute_min = true |
Whether to report the minimum of the effect sizes for each group. Only affects the summarize_effects() overload that returns a vector of SummaryResults.
| bool scran_markers::SummarizeEffectsOptions::compute_min_rank = true |
Whether to report the min-rank of the effect sizes for each group. Only affects the summarize_effects() overload that returns a vector of SummaryResults.
| bool scran_markers::SummarizeEffectsOptions::min_rank_preserve_ties = false |
Whether to preserve ties when computing the minimum rank. If true, tied genes with equal effect sizes receive the same rank within each pairwise comparison. Otherwise, ties are broken in a stable manner, i.e., genes in earlier rows will receive a higher rank.
| int scran_markers::SummarizeEffectsOptions::num_threads = 1 |
Number of threads to use. The parallelization scheme is determined by tatami::parallelize().