Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed Mar 22, 2023
1 parent 7c75a03 commit 8767e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/overlapanalysis.cpp
Expand Up @@ -120,7 +120,7 @@ Read* OverlapAnalysis::merge(Read* r1, Read* r2, OverlapResult ov) {

string name = *(r1->mName) + " merged_" + to_string(len1) + "_" + to_string(len2);
string strand = *(r1->mStrand);
if strand != "+" {
if (strand != "+") {
strand = strand + " merged_" + to_string(len1) + "_" + to_string(len2);
}
Read* mergedRead = new Read(new string(name), new string(mergedSeq), new string(strand), new string(mergedQual));
Expand Down

0 comments on commit 8767e5d

Please sign in to comment.