Skip to content

Commit

Permalink
aln vertical
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Mar 8, 2024
1 parent a56c96c commit 7194303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pwedit.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace bamstats {

template<typename TConfig>
inline void
printAlignmentVertical(TConfig const& c, std::string const& seqI, std::string const& tname, std::string const& seqJ, std::string const& qname, EdlibAlignMode const modeCode, EdlibAlignResult& cigar) {
printAlignmentVertical(TConfig const& c, std::string const& seqI, std::string const& seqJ, EdlibAlignMode const modeCode, EdlibAlignResult& cigar) {
std::string qa;
std::string ta;

Expand Down Expand Up @@ -287,7 +287,7 @@ namespace bamstats {
if (c.format == "h") {
printAlignmentHorizontal(c, query, qname, target, tname, alnMode, aln);
} else {
printAlignmentVertical(c, query, qname, target, tname, alnMode, aln);
printAlignmentVertical(c, query, target, alnMode, aln);
}

// Clean-up
Expand Down

0 comments on commit 7194303

Please sign in to comment.