Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a faster way to calculate GC content for DNA strings read in from a FASTA file. This boils down to taking a string and counting the number of times that the letter 'G' or 'C' appears. I also want to specify the range of characters to consider.

I have a working function that is fairly slow, and it's causing a bottleneck in my code. It looks like this:

##
## count the number of GCs in the characters between start and stop
##
gcCount <-  function(line, st, sp){
  chars = strsplit(as.character(line),"")[[1]]
  numGC = 0
  for(j in st:sp){
    ##nested ifs faster than an OR (|) construction
    if(chars[[j]] == "g"){
      numGC <- numGC + 1
    }else if(chars[[j]] == "G"){
      numGC <- numGC + 1
    }else if(chars[[j]] == "c"){
      numGC <- numGC + 1
    }else if(chars[[j]] == "C"){
      numGC <- numGC + 1
    }
  }
  return(numGC)
}

Running Rprof gives me the following output:

> a = "GCCCAAAATTTTCCGGatttaagcagacataaattcgagg"
> Rprof(filename="Rprof.out")
> for(i in 1:500000){gcCount(a,1,40)};
> Rprof(NULL)
> summaryRprof(filename="Rprof.out")

                   self.time self.pct total.time total.pct
"gcCount"          77.36     76.8     100.74     100.0
"=="               18.30     18.2      18.30      18.2
"strsplit"          3.58      3.6       3.64       3.6
"+"                 1.14      1.1       1.14       1.1
":"                 0.30      0.3       0.30       0.3
"as.logical"        0.04      0.0       0.04       0.0
"as.character"      0.02      0.0       0.02       0.0

$by.total
               total.time total.pct self.time self.pct
"gcCount"          100.74     100.0     77.36     76.8
"=="                18.30      18.2     18.30     18.2
"strsplit"           3.64       3.6      3.58      3.6
"+"                  1.14       1.1      1.14      1.1
":"                  0.30       0.3      0.30      0.3
"as.logical"         0.04       0.0      0.04      0.0
"as.character"       0.02       0.0      0.02      0.0

$sampling.time
[1] 100.74

Any advice for making this code faster?

share|improve this question
For what it's worth, I ended up deciding that R was altogether too slow to process ~3 billion basepairs from the human genome and used a little perl script instead. – chrisamiller Nov 4 '11 at 16:27

4 Answers

up vote 9 down vote accepted

Better to not split at all, just count the matches:

gcCount2 <-  function(line, st, sp){
  length(gregexpr('[GCgc]', substr(line, st, sp))[[1]])
}

That's an order of magnitude faster.

A small C function that just iterates over the characters would be yet another order of magnitude faster.

share|improve this answer
1  
Even better (~7x faster). Thanks! – chrisamiller Mar 15 '10 at 18:54
An important addition to this offer - beware that the length function might return (-1) instead of 0 if the substring doesn't contain G\C, so this needed to be checked. – dan12345 Aug 16 '11 at 13:05

There's no need to use a loop here.

Try this:

gcCount <-  function(line, st, sp){
  chars = strsplit(as.character(line),"")[[1]][st:sp]
  length(which(tolower(chars) == "g" | tolower(chars) == "c"))
}
share|improve this answer
Voted up. Better than my answer (it would have been: do it in BioPerl :-) ) – Federico Giorgi Mar 15 '10 at 17:39
Thanks a lot. This is roughly 4x faster, which just barely beats the function I built around Rajarshi's code. You can tell that I'm still learning R - it's hard to break out of that loop-centric thinking that I've been using for so many years. – chrisamiller Mar 15 '10 at 17:57
Another thing that you might try: tolower(chars) %in% c("g", "c"). Not sure which is faster, although I suspect that the OR | operator is faster than %in%. – Shane Mar 15 '10 at 18:11

I don't know that it's any faster, but you might want to look at the R package seqinR - http://pbil.univ-lyon1.fr/software/seqinr/home.php?lang=eng. It is an excellent, general bioinformatics package with many methods for sequence analysis. It's in CRAN (which seems to be down as I write this).

GC content would be:

mysequence <- s2c("agtctggggggccccttttaagtagatagatagctagtcgta")
    GC(mysequence)  # 0.4761905

That's from a string, you can also read in a fasta file using "read.fasta()".

share|improve this answer

A one liner:

table(strsplit(toupper(a), '')[[1]])
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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