a | b/R/data.R | ||
---|---|---|---|
1 | #' Likelihood surfaces for 400 SNPs in the HES analysis of the UK Biobank |
||
2 | #' |
||
3 | load.HES.lk.data <- function( ) { |
||
4 | |||
5 | file = system.file( 'HES_LLK.rdata', package = 'TreeWASDir' ) |
||
6 | load( file ) |
||
7 | out <- list( d = d, res = res ) |
||
8 | return(out) |
||
9 | } |
||
10 | |||
11 | |||
12 | #' List containing parameters |
||
13 | #' |
||
14 | load.pars <- function( ) { |
||
15 | |||
16 | file = system.file( 'HES_pars.rdata', package = 'TreeWASDir' ) |
||
17 | load( file ) |
||
18 | out <- pars |
||
19 | return(out) |
||
20 | } |
||
21 | |||
22 | |||
23 | |||
24 |