Thank you,appreciate that!
• 0 views
•
link
Hi,
Is there any software/R package can retrieve GC content of Refseq gene?
Thank you
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.