Skip to content

Commit

Permalink
Bug fix: add '_' to list of out-of-frame characters
Browse files Browse the repository at this point in the history
  • Loading branch information
mikessh committed Jun 30, 2015
1 parent 83d9a9e commit e83c2e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public class CommonUtil {
matcher ? (matcher.start() - 1) : -1
}

final static String OOF_SYMBOLS_POSSIBLE = /([atgc#~\?])+/, OOF_CHAR = "_", STOP_CHAR = "*"
final static String OOF_SYMBOLS_POSSIBLE = /([atgc#~_\?])+/, OOF_CHAR = "_", STOP_CHAR = "*"

static String translate(String seq) {
if (seq.length() == 0)
Expand Down

0 comments on commit e83c2e5

Please sign in to comment.