| 4 | #include "util.h" |
| 5 | |
| 6 | Read::Read(string* name, string* seq, string* strand, string* quality, bool phred64){ |
| 7 | mName = name; |
| 8 | mSeq = seq; |
| 9 | mStrand = strand; |
| 10 | mQuality = quality; |
| 11 | if(phred64) |
| 12 | convertPhred64To33(); |
| 13 | } |
| 14 | |
| 15 | Read::Read(const char* name, const char* seq, const char* strand, const char* quality, bool phred64) { |
| 16 | mName = new string(name); |
nothing calls this directly
no outgoing calls
no test coverage detected