Hey so I am trying to get the GC-content of a DNA string is given by the percentage of symbols in the string that are C or G. For example, the GC-content of "AGCTATAG" is .375 or 37.5%. Here is what I came with up. I am having trouble with the calculations and returning the double as string.
public static double gcContent(String dna) {
//TODO Implement this method
double gcContent = 0;
double count=0;
for (int i = 0; i < dna.length(); i ++) {
if (gcContent == dna.length()){
gcContent = (dna.length()/ 2) ;
}
return double.toString (gcContent);
}
}