BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
src
tsv_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 TSV_PARSER_H
21
#define TSV_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
* \exception std::length_error Throws when some row has different number of
34
* columns than is the dimension of the data.
35
*/
36
void
37
parse_TSV
(
const
std::string &file_path,
DataModel
&dm);
38
39
#endif
// #ifndef TSV_PARSER_H
data_model.h
DataModel
Storage of data from loaded input file.
Definition:
data_model.h:32
parse_TSV
void parse_TSV(const std::string &file_path, DataModel &dm)
Parses FCS file and fills DataModel data.
Definition:
tsv_parser.cpp:50
Generated by
1.9.4