We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea885a2 commit 81df2d8Copy full SHA for 81df2d8
MappedRead.cpp
@@ -61,7 +61,8 @@ MappedRead::MappedRead(const string &line) {
61
string
62
MappedRead::tostring() const {
63
std::ostringstream oss;
64
- oss << r << '\t' << seq;
+ oss << r; // no chaining for the << of GenomicRegion
65
+ oss << '\t' << seq;
66
if (!scr.empty())
67
oss << '\t' << scr;
68
return oss.str();
0 commit comments