Description Usage Arguments Value Methods Author(s) Examples
This function queries the database and generates the CNEs' density values.
1 2 3  | 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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20  | 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.