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
39template<typename Index_ = DefaultIndex>
40using Markers = std::vector<std::vector<std::vector<Index_> > >;
41
42}
43
44#endif
Common definitions for singlepp.
Cell type classification using the SingleR algorithm in C++.
Definition classify_single.hpp:19
std::vector< std::vector< std::vector< Index_ > > > Markers
Definition Markers.hpp:40