I have a line of DNA code and I'm trying to use a Java regex expression to match the codon (3 letter sequence) to an amino acid. Below is an example of one of the patterns:

Pattern A = Pattern.compile(("gct")||("gcc")||("gca")||("gcg"));

This syntax does not seem to be working with or without the round brackets. Ultimately the aim of the code is to count the number of times the amino acid is found in the DNA string, and since there are 20 or so amino acids I have that many patterns. Can anyone help me find an elegant way of doing this?

I know I could use string1.equals(string2) etc but I would really rather use regex for it. Any help would be much appreciated!

link|improve this question

1  
If you need this to be fast, there are much faster way to search DNA sequences. – Peter Lawrey Dec 8 '11 at 20:30
Maybe you could give a hint as to what these faster ways are? – G. Bach Dec 8 '11 at 20:38
feedback

2 Answers

up vote 4 down vote accepted

You're passing Pattern.compile() a boolean value, where it should be a string:

Pattern A = Pattern.compile("(gct)|(gcc)|(gca)|(gcg)");
link|improve this answer
Good eyes :) + 1 – FailedDev Dec 8 '11 at 20:29
Thank you so much Tim! – user1058210 Dec 8 '11 at 22:11
feedback

This:

/("gct")||("gcc")||("gca")||("gcg")/

Equals to :

/("gtc")/

Because double || means match nothing. And guess what? It will always match!

Instead try to use one |

/("gct")|("gcc")|("gca")|("gcg")/

Or even better:

"gc[tcag]"

Edit:

Wow didn't notice the boolean :) +1 to @Tim

link|improve this answer
"Double || means match nothing" - what are you talking about? – Matt Ball Dec 8 '11 at 20:28
@MДΓΓБДLL I am talking about an emtpy alternation. – FailedDev Dec 8 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.