Description Usage Arguments Details Value Author(s) See Also Examples
The listEnsDbs function lists EnsDb databases in a
MariaDB/MySQL server.
| 1 | listEnsDbs(dbcon, host, port, user, pass)
 | 
| dbcon | A  | 
| host | Character specifying the host on which the MySQL server is running. | 
| port | The port of the MariaDB/MySQL server (usually  | 
| user | The username for the MariaDB/MySQL server. | 
| pass | The password for the MariaDB/MySQL server. | 
The use of this function requires the RMariaDB package
to be installed. In addition user credentials to access a MySQL server
(with already installed EnsDb databases), or with write access are required.
For the latter EnsDb databases can be added with the useMySQL
method. EnsDb databases in a MariaDB/MySQL server follow the same naming
conventions than EnsDb packages, with the exception that the name is all
lower case and that each "." is replaced by "_".
A data.frame listing the database names, organism name
and Ensembl version of the EnsDb databases found on the server.
Johannes Rainer
| 1 2 3 4 5 6 | ## Not run: 
library(RMariaDB)
dbcon <- dbConnect(MariaDB(), host = "localhost", user = my_user, pass = my_pass)
listEnsDbs(dbcon)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.