Ejemplo n.º 1
0
 std::string toString() {
     std::stringstream ss;
     ss << read->getID() << (BEGIN?".B":".E");
     return ss.str();
 }
Ejemplo n.º 2
0
 /*  Returns the GFA representation of the read
  */
 std::string toGFA(){
     std::stringstream ss;
     ss << "S " << read->getID() << " " << read->sequence;
     return ss.str();
 }