R/data.R

Defines functions load.HES.lk.data load.pars

Documented in load.HES.lk.data load.pars

#' Likelihood surfaces for 400 SNPs in the HES analysis of the UK Biobank
#' 
load.HES.lk.data <- function( ) {

    file = system.file( 'HES_LLK.rdata', package = 'TreeWASDir' )
    load( file )
    out <- list( d = d, res = res )
    return(out)
}
    

#' List containing parameters
#' 
load.pars <- function( ) {

    file = system.file( 'HES_pars.rdata', package = 'TreeWASDir' )
    load( file )
    out <- pars
    return(out)
}
    
mcveanlab/TreeWASDir documentation built on May 29, 2019, 2:01 a.m.