MCPcopy Create free account
hub / github.com/OpenGene/fastp / Read

Method Read

src/read.cpp:6–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include "util.h"
5
6Read::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
15Read::Read(const char* name, const char* seq, const char* strand, const char* quality, bool phred64) {
16 mName = new string(name);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected