Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
pre-release details
Browse files Browse the repository at this point in the history
  • Loading branch information
ctsa committed Oct 18, 2013
1 parent 305b65c commit 7611c1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v0.11
- Adjust all vcf output to pass vcf-validator
- MANTA-20 fix split read breakpoint location
v0.10.1
Expand Down
2 changes: 1 addition & 1 deletion src/c++/lib/format/VcfWriterSV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ makeFormatSampleField(
if (sample.empty()) return;

{
// first write FORMAT field:
// first write FORMAT field:
os << '\t';

bool isFirst(true);
Expand Down
4 changes: 2 additions & 2 deletions src/c++/lib/manta/SVScoreInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ SVAlignmentInfo(
revContigSeq = reverseCompCopyStr(contigSeq);
// reset offset w.r.t. the reversed contig
if (bp1ContigReversed)
bp1ContigOffset = contigSeq.size() - bp1ContigOffset - 1;
bp1ContigOffset = contigSeq.size() - bp1ContigOffset - 1;
else
bp2ContigOffset = contigSeq.size() - bp2ContigOffset - 1;
bp2ContigOffset = contigSeq.size() - bp2ContigOffset - 1;
}

// get reference regions
Expand Down

0 comments on commit 7611c1a

Please sign in to comment.