1#ifndef SCRAN_MARKERS_SUMMARIZE_EFFECTS_HPP
2#define SCRAN_MARKERS_SUMMARIZE_EFFECTS_HPP
113template<
typename Gene_,
typename Stat_,
typename Rank_>
115 internal::compute_min_rank_pairwise(ngenes, ngroups, effects, summaries, options.
num_threads);
116 internal::summarize_comparisons(ngenes, ngroups, effects, summaries, options.
num_threads);
135template<
typename Stat_ =
double,
typename Rank_ =
int,
typename Gene_>
137 std::vector<SummaryResults<Stat_, Rank_> > output;
138 auto ptrs = internal::fill_summary_results(
Marker detection for single-cell data.
Definition score_markers_pairwise.hpp:25
void summarize_effects(Gene_ ngenes, std::size_t ngroups, const Stat_ *effects, const std::vector< SummaryBuffers< Stat_, Rank_ > > &summaries, const SummarizeEffectsOptions &options)
Definition summarize_effects.hpp:114
Options for summarize_effects().
Definition summarize_effects.hpp:19
int num_threads
Definition summarize_effects.hpp:24
bool compute_median
Definition summarize_effects.hpp:42
bool compute_mean
Definition summarize_effects.hpp:36
bool compute_min_rank
Definition summarize_effects.hpp:54
bool compute_max
Definition summarize_effects.hpp:48
bool compute_min
Definition summarize_effects.hpp:30
Pointers to arrays to hold the summary statistics.
Definition summarize_comparisons.hpp:27
Utilities for effect summarization.