Entering edit mode
8.8 years ago
BIOTIN
▴
50
Hi,
Is there any software/R package can retrieve GC content of Refseq gene?
Thank you
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)
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thank you,appreciate that!