Skip to content

Commit

Permalink
Fixes #9 Convert all letters to upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
halilbilgin authored Jan 11, 2022
1 parent 62a801f commit dff8afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/msabrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@

let aaBox = document.createElement("div");
//reading protein sequence letter by letter
var aaLetter = seq1.charAt(positionIndex);
var aaLetter = seq1.charAt(positionIndex).toUpperCase();
//creating amino acid boxes

if (aaLetter != '-') {
Expand Down

0 comments on commit dff8afd

Please sign in to comment.