e7fb6421 |
// This file was generated by Rcpp::compileAttributes
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
|
6c754842 |
// CellCounts_character
IntegerMatrix CellCounts_character(List data, List combinations);
|
060940bf |
RcppExport SEXP
COMPASS_CellCounts_character(SEXP dataSEXP, SEXP combinationsSEXP) {
BEGIN_RCPP
SEXP __sexp_result;
{
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter<List>::type data(dataSEXP);
Rcpp::traits::input_parameter<List>::type combinations(combinationsSEXP);
IntegerMatrix __result = CellCounts_character(data, combinations);
PROTECT(__sexp_result = Rcpp::wrap(__result));
}
UNPROTECT(1);
return __sexp_result;
END_RCPP
|
e7fb6421 |
}
|
6c754842 |
// CellCounts
IntegerMatrix CellCounts(List x, List combos);
RcppExport SEXP COMPASS_CellCounts(SEXP xSEXP, SEXP combosSEXP) {
|
060940bf |
BEGIN_RCPP
SEXP __sexp_result;
{
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter<List>::type x(xSEXP);
Rcpp::traits::input_parameter<List>::type combos(combosSEXP);
IntegerMatrix __result = CellCounts(x, combos);
PROTECT(__sexp_result = Rcpp::wrap(__result));
}
UNPROTECT(1);
return __sexp_result;
END_RCPP
|
e7fb6421 |
}
|