BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
parsers.cpp
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#include "parsers.h"
20
21#include "data_model.h"
22#include "fcs_parser.h"
23#include "tsv_parser.h"
24
25#include <exception>
26#include <filesystem>
27
28void
29parse_generic(const std::string &filename, DataModel &dm)
30{
31 auto parse_with = [&](auto f) {
32 dm.clear();
33 f(filename, dm);
34
35 // TODO temporary precaution, remove later
36#if 0
37 if (dm.n > 1000) {
38 dm.n = 1000;
39 dm.data.resize(dm.d * dm.n);
40 }
41#endif
42 };
43
44 std::string ext = std::filesystem::path(filename).extension().string();
45
46 if (ext == ".fcs")
47 parse_with(parse_FCS);
48 else if (ext == ".tsv")
49 parse_with(parse_TSV);
50 else
51 throw std::domain_error("Unsupported file format.");
52}
void parse_FCS(const std::string &filename, DataModel &dm)
Parses FCS file and fills DataModel data.
Definition: fcs_parser.cpp:190
void parse_generic(const std::string &filename, DataModel &dm)
Parses data from input file.
Definition: parsers.cpp:29
Storage of data from loaded input file.
Definition: data_model.h:32
void clear()
Clears all DataModel data to their default values.
Definition: data_model.h:51
size_t d
Dimension size.
Definition: data_model.h:39
std::vector< float > data
One-dimensional array storing d-dimensional input data in row-major order.
Definition: data_model.h:35
size_t n
Definition: dirty.h:83
void parse_TSV(const std::string &filename, DataModel &dm)
Parses FCS file and fills DataModel data.
Definition: tsv_parser.cpp:50