CNEDensity-methods | R Documentation |
This function queries the database and generates the CNEs' density values.
CNEDensity(dbName, tableName, chr, start, end, whichAssembly=c("first", "second"), windowSize=300, minLength=NULL)
dbName |
|
tableName |
|
chr |
|
start, end |
|
whichAssembly |
|
windowSize |
|
minLength |
|
A GRanges
object with density values is returned.
signature(tableName = "character",
assembly1 = "character", assembly2 = "missing",
threshold = "missing")
signature(tableName = "missing", assembly1 = "character",
assembly2 = "character", threshold = "character")
Ge Tan
dbName <- file.path(system.file("extdata", package="CNEr"), "danRer10CNE.sqlite") genome <- "danRer10" chr <- "chr6" start <- 24000000L end <- 27000000L windowSize <- 200L minLength <- 50L cneDanRer10Hg38_45_50 <- CNEDensity(dbName=dbName, tableName="danRer10_hg38_45_50", whichAssembly="first", chr=chr, start=start, end=end, windowSize=windowSize, minLength=minLength) cneDanRer10Hg38_49_50 <- CNEDensity(dbName=dbName, tableName="danRer10_hg38_49_50", whichAssembly="first", chr=chr, start=start, end=end, windowSize=windowSize, minLength=minLength)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.