This is a test version of Biostars. For the public version, visit https://www.biostars.org.
GC content of Refseq gene

Hi,

Is there any software/R package can retrieve GC content of Refseq gene?

Thank you

next-gen

1 answer

Repitools has a function for calculating gcContent called as gcContentCalc

Minimal example from the package.

require(BSgenome.Hsapiens.UCSC.hg18)
TSSTable <- data.frame(chr = paste("chr", c(1,2), sep = ""), position = c(100000, 200000))
gcContentCalc(TSSTable, 200, organism=Hsapiens)

Thank you,appreciate that!

Log in to answer this question.