Skip to content

Commit 943b89d

Browse files
committed
Bugfix character->string
1 parent d3dd083 commit 943b89d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,11 +365,11 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
365365
if ("D".equals(line[0]))
366366
{
367367
length = end1 - Integer.parseInt(line[2]); //NOTE: pindel reports one base upstream+downstream as part of the indel
368-
alt = String.valueOf(rs.getBases()[start0]);
368+
alt = Character.toString(rs.getBases()[start0]);
369369
}
370370
else if ("I".equals(line[0]))
371371
{
372-
alt = (char)rs.getBases()[start0] + line[7];
372+
alt = Character.toString(rs.getBases()[start0]) + line[7];
373373
length = alt.length();
374374
}
375375

0 commit comments

Comments
 (0)