Im writing a program in java and part of it has to evaluate cleavages in a protein sequence. I have to evaluate if the cleavage happens at certain groups on either end which results in if, else/elseif statements with either annoying logicals in several places, nesting, or just several "if"s and/or "else"s. I've used switch as an alternative to having to evaluate several "if"s and logicals (&&, ||) each time a cleavage happens (this loop will iterate literally MILLIONS of times, possible tens or hundreds of millions).
heres the chunk of code: -.getSeq() gets a string representing the sequence of a protein -startPos and endPos are the indices of the cleavages on either end -sorry if the if statement lines are broken into multiple lines or convoluted, but that's kind of my case and point about the logicals.
/**0: non-tryptic, 1: half-tryptic, 2: fully tryptic**************/
public boolean checkPep(int trypticity){
boolean evaluator = false;
int prev = 0;
if (startPos != 0){
prev = 1;
}
switch(trypticity){
/**do not check cleavage if peptide can be non-tryptic*/
case 0:
evaluator = true;
break;
/***half-tryptic*/
/**check if either the start OR end cleavage is tryptic*/
case 1:
switch(protein.getSeq().charAt(startPos-prev)){
case 'K':
evaluator = true;
break;
case 'R':
evaluator = true;
break;
default :
switch(protein.getSeq().charAt(endPos)){
case 'K':
evaluator = true;
break;
case 'R':
evaluator = true;
break;
default:
evaluator = false;
break;
}
break;
}
break;
/**fully tryptic*/
/**if first cleavage is tryptic, check end cleavage*/
/**evaluator = true IFF both cleavages are tryptic*******/
case 2:
if(((protein.getSeq().charAt(startPos-1)) == 'K') || ((protein.getSeq().charAt(startPos-1)) == 'R')){
if(((protein.getSeq().charAt(endPos)) == 'K') || ((protein.getSeq().charAt(endPos)) == 'R')){
evaluator = true;
}else{
evaluator = false;
}
}else{
evaluator = false;
}
break;
}
return evaluator;
}
protein.getSeq():) – Ray Toal Jun 28 '12 at 0:21int,short, and, yes,char), if the range isn't too big, Java can turn theswitchstatement into a lookup table of places to jump to, potentially making it faster. But til you've profiled it and seen it's faster in your case, readability wins out IMO. Personally, though, i findswitchstatements more readable as well when it involves checking more than one possibility and anelse. – cHao Jun 28 '12 at 0:43ifvs.switch, then why aren't you caching the results ofprotein.getSeq()and especiallyprotein.getSeq().charAt(...)instead of calling them multiple times across thecases and||s? – sparc_spread Jun 28 '12 at 0:52