Skip to content

MerrimanLab/gwasDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gwasDB

Required libraries

library(tidyverse)
library(dbplyr)
library(RPostgreSQL)
library(config)

Config file creation

In a file called `config.yml’

gwasdb_ro:
  driver: 'PostgreSQL Unicode' # this might differ on your computer - use odbc::odbcListDrivers() to see the available names for you.
  database: 'gwasdb'
  server: 'biocmerriserver2.otago.ac.nz'
  port: 5432
  username: '' # get details from Murray
  password: '' # get details from Murray

Accessing

Sys.setenv(R_CONFIG_ACTIVE = "gwasdb_ro")
conf <- config::get(file = here::here("config.yml"))
con <- dbConnect(odbc::odbc(),driver = conf$driver, database = conf$database, servername = conf$server, port = conf$port, UID = conf$user, PWD = conf$password , timeout = 100)

About

Database to store summary results from GWAS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published