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