[8da99d]: / R / data.R

Download this file

25 lines (16 with data), 444 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#' 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)
}