Skip to content

Commit 75abcdc

Browse files
src/radmeth/radmeth_model.hpp: replaced the chrom, position, strand and context with just rowname. The parsing will replace colon with tab, allowing colons to separate fields, but still allowing rownames without colons to be treated just as a label
1 parent c527400 commit 75abcdc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/radmeth/radmeth_model.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ operator>>(std::istream &in, mcounts &rm) {
7575
}
7676

7777
struct SiteProp {
78-
std::string chrom;
79-
std::size_t position{};
80-
char strand{};
81-
std::string context;
78+
std::string rowname;
8279
std::vector<mcounts> mc;
8380

8481
void

0 commit comments

Comments
 (0)