-
Notifications
You must be signed in to change notification settings - Fork 5
/
NAMESPACE
33 lines (30 loc) · 1.27 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Export the following names
useDynLib(SAIGEgds,
saige_score_test_init, saige_simd_version,
saige_store_2b_geno, saige_store_sp_geno,
saige_fit_AI_PCG_binary, saige_fit_AI_PCG_quant,
saige_calc_var_ratio_binary, saige_calc_var_ratio_quant,
saige_burden_test_bin, saige_burden_test_quant,
saige_acatv_test_bin, saige_acatv_test_quant,
saige_acato_test_bin, saige_acato_test_quant,
saige_acat_p,
saige_GxG_snp_bin
)
# Export all names
exportPattern("^seq*")
export(pACAT, pACAT2, glmmHeritability)
# Import all packages listed as Imports or Depends
import(methods)
import(Rcpp)
importFrom(stats, as.formula, binomial, gaussian, glm, lm, model.frame,
model.matrix, model.response, na.omit, sd, var, qnorm, dbeta)
importFrom(utils, object.size, packageVersion, str, write.csv, write.table)
importFrom(gdsfmt, createfn.gds, openfn.gds, closefn.gds, index.gdsn, ls.gdsn,
add.gdsn, read.gdsn, readex.gdsn, readmode.gdsn, put.attr.gdsn,
get.attr.gdsn)
importFrom(SeqArray, seqOpen, seqClose, seqGetData, seqApply, seqSummary,
seqParallel, seqResetFilter, seqSetFilter, seqGetFilter, seqSetFilterCond,
seqAlleleFreq, seqUnitApply)
importFrom(RcppParallel, setThreadOptions, RcppParallelLibs)
# Registering S3 methods
S3method(print, ClassSAIGE_NullModel)