Skip to content

Commit

Permalink
Remove useless semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
morispi committed Jun 28, 2021
1 parent 30f343f commit d933e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SVOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void outputSVsAsVCF(robin_hood::unordered_set<StructuralVariant>& finalSVs, stri
if (s.type != "TRA") {
out << s.chr1 << "\t" << s.breakpoint1 << "\t" << "call_" << calls << "\t" << twoBitsToString(genomeIndex[s.chr1][s.breakpoint1 * 2], genomeIndex[s.chr1][s.breakpoint1 * 2 + 1])
<< "\t" << "<" << s.type << ">" << "\t" << s.barcodes + s.pairSupport << "\t" << "PASS" << "\t" << "SVTYPE=" << s.type << ";END=" << s.breakpoint2
<< ";SVLEN=" << s.breakpoint2 - s.breakpoint1 + 1 << ";" << ";BARCODES=" << s.barcodes << ";PAIRS=" << s.pairSupport << endl;
<< ";SVLEN=" << s.breakpoint2 - s.breakpoint1 + 1 << ";BARCODES=" << s.barcodes << ";PAIRS=" << s.pairSupport << endl;
} else {
// TODO: gather 4 breakpoints for translocations?
out << s.chr1 << "\t" << s.breakpoint1 << "\t" << "call_" << calls << "_1" << "\t" << twoBitsToString(genomeIndex[s.chr1][s.breakpoint1 * 2], genomeIndex[s.chr1][s.breakpoint1 * 2 + 1])
Expand Down

0 comments on commit d933e9d

Please sign in to comment.