Nothing
#' @importFrom dplyr inner_join left_join union
## RSQLite safe joins
.fullJoin <- function(table1, table2) {
## just a union() works since all tables should have same columns
suppressMessages(union(table1, table2))
}
.leftJoin <- function(table1, table2) {
suppressMessages(left_join(table1, table2))
}
.innerJoin <- function(table1, table2) {
## find columns that contain only NAs to prevent a bad join on them
trouble_makers <- c('tx_type', 'exon_name', 'cds_name', 'refseq',
'ensembltrans', 'enzyme', 'ensemblprot', 'prosite')
col1 <- colnames(table1)
col2 <- colnames(table2)
trouble_makers <-
trouble_makers[trouble_makers %in% col1 & trouble_makers %in% col2]
if(length(trouble_makers) > 0) {
nam <- col1[!col1 %in% trouble_makers]
table1 <- do.call(dplyr::select, c(list(table1), as.list(nam)))
}
suppressMessages(inner_join(table1, table2))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.