singlepp
A C++ library for cell type classification
Loading...
Searching...
No Matches
Markers.hpp
Go to the documentation of this file.
1#ifndef SINGLEPP_MARKERS_HPP
2#define SINGLEPP_MARKERS_HPP
3
4#include "defs.hpp"
5
6#include <vector>
7
14namespace singlepp {
15
38template<typename Index_ = DefaultIndex>
39using PairwiseMarkers = std::vector<std::vector<std::vector<Index_> > >;
40
55template<typename Index_ = DefaultIndex>
56using PerLabelMarkers = std::vector<std::vector<Index_> >;
57
61// For back-compatibility.
62template<typename Index_ = DefaultIndex>
63using Markers = PairwiseMarkers<Index_>;
68}
69
70#endif
Common definitions for singlepp.
Cell type classification using the SingleR algorithm in C++.
Definition classify_single.hpp:20
std::vector< std::vector< std::vector< Index_ > > > PairwiseMarkers
Definition Markers.hpp:39
std::vector< std::vector< Index_ > > PerLabelMarkers
Definition Markers.hpp:56