Skip to content

Commit 6708e49

Browse files
Merge branch 'master' of github.com:smithlabcode/smithlab_cpp
2 parents ff271bf + 446780f commit 6708e49

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

MappedRead.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ MappedRead::MappedRead(const string &line) {
5353
end = start + seq.length();
5454
}
5555
r = GenomicRegion(chrom, start, end, name, score, strand);
56-
is >> scr;
5756
}
5857
else throw runtime_error("bad line in MappedRead file: " + line);
5958
}
@@ -63,7 +62,5 @@ MappedRead::tostring() const {
6362
std::ostringstream oss;
6463
oss << r; // no chaining for the << of GenomicRegion
6564
oss << '\t' << seq;
66-
if (!scr.empty())
67-
oss << '\t' << scr;
6865
return oss.str();
6966
}

MappedRead.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ struct MappedRead {
3030
explicit MappedRead(const std::string &line);
3131
GenomicRegion r;
3232
std::string seq;
33-
std::string scr;
3433
std::string tostring() const;
3534
};
3635

0 commit comments

Comments
 (0)