Skip to content

Commit c597d32

Browse files
committed
Display unrecognized modifications in popup text
1 parent 916c173 commit c597d32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/broad/igv/sam/mods/BaseModificationSet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public boolean containsPosition(Integer pos) {
5353
public String valueString(int pos) {
5454
int l = (int) (100.0 * Byte.toUnsignedInt(likelihoods.get(pos)) / 255);
5555
return "Base modification: " +
56-
((codeValues.containsKey(modification)) ? codeValues.get(modification) : "Uknown") + " (" + l + "%)";
56+
((codeValues.containsKey(modification)) ? codeValues.get(modification) : modification) + " (" + l + "%)";
5757
}
5858

5959
static Map<String, String> codeValues;

0 commit comments

Comments
 (0)