[Seqan-dev] ModifiedString question
Hi,
I have the following function:
bool qualityThreshold(Dna5String& seq1, CharString& qual1, Dna5String&
seq2, CharString& qual2,
int qualityThreshold, int minLen, bool& pairedEnd,
int& countPrimeTrimmed, int& lengthConstrain ) {
now, I want to use the reverse sequence as an input using :
Dna5StringReverse revSeq1(seq1);
I guess I misunderstand something here, but it seems that
Dna5StringReverse is not returning a DNA5String but its own type... How
can I convert the Reverse in a regular DNA5String?
Thanks for the clarification,
Bernd