BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
|
#include "parsers.h"
#include "data_model.h"
#include "fcs_parser.h"
#include "tsv_parser.h"
#include <exception>
#include <filesystem>
Go to the source code of this file.
Functions | |
void | parse_generic (const std::string &filename, DataModel &dm) |
Parses data from input file. More... | |
void parse_generic | ( | const std::string & | file_path, |
DataModel & | dm | ||
) |
Parses data from input file.
The chosen parser depends on the file type.
[in] | file_path | Path to the file that will be parsed. |
[out] | dm | DataModel instance filled by data from the parsed file. |
Definition at line 29 of file parsers.cpp.