Skip to content

Commit e664c44

Browse files
committed
Fix end with indels
1 parent 8387057 commit e664c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PindelAnalysis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ private static void parsePindelOutput(PipelineContext ctx, CSVWriter writer, Fil
331331

332332
String type = tokens[1].split(" ")[0];
333333
int baseAfterEnd = Integer.parseInt(tokens[5]);
334-
int trueEnd = "I".equals(type) ? baseAfterEnd : baseAfterEnd - 1;
334+
int trueEnd = baseAfterEnd - 1;
335335

336336
// Capture depth before/after event:
337337
int j = 0;

0 commit comments

Comments
 (0)