We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c18925 commit 161eb5cCopy full SHA for 161eb5c
src/main/java/progistar/pXg/data/AAVariantTable.java
@@ -96,8 +96,13 @@ public static void parseTable (String tableFilePath) {
96
String aaRNA = fields[aaRNAIdx];
97
String aaPeptide = fields[aaPeptideIdx];
98
99
- // add aaVariant
100
- AAVariantTable.addAAVariant(aaRNA, aaPeptide);
+ if(aaRNA.equalsIgnoreCase(aaPeptide)) {
+ System.out.println("Skip synounymous amino acid variation: "+aaRNA+">"+aaPeptide);
101
+ } else {
102
+ // add aaVariant
103
+ AAVariantTable.addAAVariant(aaRNA, aaPeptide);
104
+ }
105
+
106
107
}
108
0 commit comments