BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
parsers.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef PARSERS_H
20#define PARSERS_H
21
22#include "data_model.h"
23#include <string>
24
25/**
26 * @brief Parses data from input file.
27 *
28 * The chosen parser depends on the file type.
29 *
30 * @param[in] file_path Path to the file that will be parsed.
31 * @param[out] dm @ref DataModel instance filled by data from the parsed file.
32 */
33void
34parse_generic(const std::string &file_path, DataModel &dm);
35
36#endif
void parse_generic(const std::string &file_path, DataModel &dm)
Parses data from input file.
Definition: parsers.cpp:29
Storage of data from loaded input file.
Definition: data_model.h:32