-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWriteTSV.cpp
More file actions
138 lines (124 loc) · 3.37 KB
/
WriteTSV.cpp
File metadata and controls
138 lines (124 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include "Eigen/Dense"
#include "Msg.hpp"
#include "WriteTSV.hpp"
#include <cstdio>
#include <fstream>
#include <iostream>
WriteTSV::WriteTSV(void){
}
WriteTSV::WriteTSV(std::string filepath, bool overwrite) : filepath(filepath), numRows(0), numCols(0), rnFlag(false){
if(overwrite == true)
std::remove(filepath.c_str());
fout.open(filepath, std::ios::out | std::ios::app);
}
WriteTSV::~WriteTSV(void){
fout.close();
}
void WriteTSV::addColumnNamesTSV(std::vector<std::string> cn){
if(numRows == 0){
for(int i = 0; i < cn.size(); i++){
if(i < (cn.size() - 1))
fout << cn[i] << "\t";
else
fout << cn[i];
}
fout << "\n";
numRows++;
}else{
Msg::error("adding column names after data has alread been entered");
}
fout.flush();
}
void WriteTSV::addFilepath(std::string fp, bool overwrite){
if (fout.is_open()) {
fout.close();
}
filepath = fp;
if(overwrite == true)
std::remove(filepath.c_str());
fout.open(filepath, std::ios::out | std::ios::app);
numRows = 0;
numCols = 0;
rnFlag = false;
if (!fout.is_open())
Msg::error("File stream is not open: " + filepath);
}
void WriteTSV::addRownamesTSV(std::vector<std::string> rn){
rownames = rn;
rnFlag = true;
}
void WriteTSV::appendDataTSV(Eigen::MatrixXd x){
if (!fout.is_open())
Msg::error("Attempting to write to TSV file before opening it.");
std::vector<double> row;
row.clear();
for(int i = 0; i < x.rows(); i++){
for(int j = 0; j < x.cols(); j++)
row.push_back(x(i, j));
appendDataTSV(row);
row.clear();
}
}
void WriteTSV::appendDataTSV(std::vector<double> data){
if (!fout.is_open())
Msg::error("Attempting to write to TSV file before opening it.");
if(rnFlag == false){
for(int i = 0; i < data.size(); i++){
if(i < (data.size()-1))
fout << data[i] << "\t";
else
fout << data[i];
}
fout << "\n";
numRows++;
}else{
if (numRows >= rownames.size())
Msg::error("Not enough row names provided");
fout << rownames[numRows] << "\t";
for(int i = 0; i < data.size(); i++){
if(i < (data.size()-1))
fout << data[i] << "\t";
else
fout << data[i];
}
fout << "\n";
numRows++;
}
fout.flush();
}
void WriteTSV::appendDataTSV(std::vector<std::string> data){
if (!fout.is_open())
Msg::error("Attempting to write to TSV file before opening it.");
if(rnFlag == false){
for(int i = 0; i < data.size(); i++){
if(i < (data.size()-1))
fout << data[i] << "\t";
else
fout << data[i];
}
fout << "\n";
numRows++;
}else{
if (numRows >= rownames.size())
Msg::error("Not enough row names provided");
fout << rownames[numRows] << "\t";
for(int i = 0; i < data.size(); i++){
if(i < (data.size()-1))
fout << data[i] << "\t";
else
fout << data[i];
}
fout << "\n";
numRows++;
}
fout.flush();
}
void WriteTSV::appendDataTSV(std::string data){
fout << data;
fout << "\n";
numRows++;
fout.flush();
}
void WriteTSV::closeTSV(void){
fout.close();
}