Description Usage Arguments Details Author(s) Examples
This function saves the CNE results into a local SQLite database.
1 | 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
1 2 3 4 5 6 7 8 | 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.