| 46 | } |
| 47 | |
| 48 | void Read::printFile(ofstream& file){ |
| 49 | file << *mName << endl; |
| 50 | file << *mSeq << endl; |
| 51 | file << *mStrand << endl; |
| 52 | file << *mQuality << endl; |
| 53 | } |
| 54 | |
| 55 | Read* Read::reverseComplement(){ |
| 56 | string seq = Sequence::reverseComplement(mSeq); |
nothing calls this directly
no outgoing calls
no test coverage detected