Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Sequence Trimming - cleanup functions #352
Comments
mothur-westcott
added this to the
Back Burner
milestone
Jul 7, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mothur-westcott commentedJul 7, 2017
When I call…
the output is the untrimmed sequence. but if I do
rSeq.printUnAlignedSequence(cout);orcout << rSeq.getUnaligned().length() << endl;, I get the right output. Looking at the Sequence class, I’m not sure why the two print methods would give different results for unaligned sequences. Perhaps inSequence::setUnaligned(called at L490 of qualityscores.cpp), we should set isaligned to FALSE. Alternatively we should useSequence::trimat L490 of qualityscores.cpp, which does this naturally. I don’t think it impacts my application, but the print and trim calls seem like they need a tweak.