We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12b1d35 commit 92f5a75Copy full SHA for 92f5a75
src/main/java/org/mskcc/oncokb/curation/util/parser/ProteinChangeParser.java
@@ -142,9 +142,7 @@ public static ParsingStatus<Alteration> parseInframe(String proteinChange) {
142
// we only want to specify reference when it's one position ins/del
143
alteration.setRefResidues(m.group(1).toUpperCase());
144
}
145
- if (alteration.getRefResidues() != null) {
146
- revisedProteinChange += alteration.getRefResidues();
147
- }
+ revisedProteinChange += m.group(1);
148
alteration.setStart(Integer.valueOf(m.group(2)));
149
revisedProteinChange += alteration.getStart();
150
if (m.group(3) != null) {
0 commit comments