BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Functions
tsv_parser.cpp File Reference
#include "tsv_parser.h"
#include <fstream>
#include <sstream>
Include dependency graph for tsv_parser.cpp:

Go to the source code of this file.

Functions

static std::vector< std::string > split (const std::string &str, char delim)
 Splits a given string into words by a given delimiter. More...
 
void parse_TSV (const std::string &filename, DataModel &dm)
 Parses FCS file and fills DataModel data. More...
 

Function Documentation

◆ parse_TSV()

void parse_TSV ( const std::string &  file_path,
DataModel dm 
)

Parses FCS file and fills DataModel data.

Parameters
[in]file_pathFile path to the FCS file.
[out]dmDataModel instance filled by data from parsed FCS file.
Exceptions
std::domain_errorThrows when the file cannot be opened.
std::length_errorThrows when some row has different number of columns than is the dimension of the data.

Definition at line 50 of file tsv_parser.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ split()

static std::vector< std::string > split ( const std::string &  str,
char  delim 
)
static

Splits a given string into words by a given delimiter.

Parameters
strInput string for splitting.
delimDelimiter used for splitting.
Returns
std::vector<std::string> Array of resulting words.
Todo:
TODO replace by inplace ops

Definition at line 36 of file tsv_parser.cpp.

Here is the caller graph for this function: