saveCNEToSQLite-methods | R Documentation |
This function saves the CNE results into a local SQLite database.
saveCNEToSQLite(x, dbName, tableName=NULL, overwrite=FALSE)
x |
An object of |
dbName |
|
tableName |
|
overwrite |
|
before loading into an SQLite database, a bin indexing system is used to index the CNE range, which provides faster SQL query.
Ge Tan
dbName <- tempfile() data(cneFinalListDanRer10Hg38) tableNames <- paste("danRer10", "hg38", names(cneFinalListDanRer10Hg38), sep="_") for(i in 1:length(cneFinalListDanRer10Hg38)){ saveCNEToSQLite(cneFinalListDanRer10Hg38[[i]], dbName, tableNames[i], overwrite=TRUE) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.