Skip to content

Commit 0a38278

Browse files
committed
Bugfix to CigarPositionIterable when operator is equal sign
1 parent bc8f617 commit 0a38278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/api/picard/CigarPositionIterable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public PositionInfo(SAMRecord record, int pos, char[] ops, Integer[] readPos, In
155155
{
156156
_record = record;
157157
_pos = pos;
158-
_op = CigarOperator.valueOf(Character.toString(ops[pos]));
158+
_op = CigarOperator.characterToEnum(ops[pos]);
159159
_readPos = readPos[pos];
160160
_refPos = refPos[pos];
161161

0 commit comments

Comments
 (0)