Skip to content

Commit

Permalink
Spell sequence correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak authored Sep 24, 2020
1 parent 3b70386 commit a64b70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ bam1_t* alignment_to_bam_internal(bam_hdr_t* header,
const string* qual = &alignment.quality();
string rev_qual;
if (refrev) {
// Sequance and quality both need to be flipped to target forward orientation
// Sequence and quality both need to be flipped to target forward orientation
rev_seq = reverse_complement(*seq);
seq = &rev_seq;
reverse_copy(qual->begin(), qual->end(), back_inserter(rev_qual));
Expand Down

1 comment on commit a64b70c

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch fix-surject-orientation. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 18879 seconds

Please sign in to comment.