Skip to content

Commit

Permalink
Merge pull request #43 from vanNul/master
Browse files Browse the repository at this point in the history
kseq.h discarded the unaligned sequence name marker @, so we should a…
  • Loading branch information
walaj committed Mar 10, 2019
2 parents 775c950 + a5a106c commit 964f73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SeqLib/UnalignedSequence.h
Expand Up @@ -59,7 +59,7 @@ namespace SeqLib {
* @param us UnalignedSequence
*/
friend std::ostream& operator<<(std::ostream& os, const SeqLib::UnalignedSequence& us){
os << us.Name << " " << us.Com << "\n";
os << "@" << us.Name << " " << us.Com << "\n";
os << us.Seq << "\n+\n";
os << us.Qual << "\n";
return os;
Expand Down

0 comments on commit 964f73a

Please sign in to comment.