1#ifndef SCRAN_AGGREGATE_CLEAN_FACTORS_HPP
2#define SCRAN_AGGREGATE_CLEAN_FACTORS_HPP
4#include "factorize/factorize.hpp"
9template<
typename Factor_,
typename Output_>
10std::vector<Factor_> clean_factor(
const std::size_t n,
const Factor_*
const factor, Output_*
const cleaned) {
11 return factorize::create_factor(n, factor, cleaned);
Aggregate single-cell expression values.
Definition aggregate_across_cells.hpp:20