-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathNAMESPACE
52 lines (48 loc) · 1.84 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Export the following names
useDynLib(SNPRelate,
gnrAlleleStrand,
gnrChromParse, gnrChromParseNumeric, gnrChromRangeNumeric,
gnrConvBEDFlag, gnrConvBED2GDS, gnrConvGDS2BED, gnrConvGDS2EIGEN,
gnrConvGDS2PED, gnrCopyGeno, gnrCopyGenoMem, gnrDiss,
gnrDistPerm,
gnrEigMix, gnrEigMixSNPLoading, gnrEigMixSampLoading,
gnrIBD_Beta, gnrErrMsg, gnrFst, gnrHWE,
gnrGetGenoDim, gnrGetGenoDimInfo,
gnrGRM, gnrGRMMerge, gnrGRM_avg_val,
gnrIBD_KING_Homo, gnrIBD_KING_Robust, gnrIBD_LogLik,
gnrIBD_LogLik_k01, gnrIBD_MLE, gnrIBD_MLE_Jacquard, gnrIBD_PLINK,
gnrIBSAve, gnrIBSNum, gnrIndInb, gnrIndInbCoef, gnrSSEFlag, gnrLDMat,
gnrLDpair, gnrLDpruning, gnrParseGEN, gnrParsePED,
gnrParseVCF4Init, gnrParseVCF4, gnrPairScore,
gnrPairIBD, gnrPairIBDLogLik,
gnrPCA, gnrPCACorr, gnrPCASampLoading, gnrPCASNPLoading,
gnrSampFreq,
gnrSetGenoSpace, gnrSetSeqSpace,
gnrSelSNP_Base, gnrSelSNP_Base_Ex,
gnrSlidingNumWin, gnrSlidingWindow,
gnrSNPFreq, gnrSNPRateFreq, gnrStrandSwitch
)
# Export all names
exportPattern("^snpgds*")
export(.onAttach)
# Import all packages listed as Imports or Depends
import(gdsfmt)
importFrom(methods, new)
importFrom(utils, count.fields, read.table, write.table, packageVersion, str)
importFrom(stats, as.dendrogram, as.dist, dendrapply, hclust, is.leaf, sd,
rnorm)
importFrom(grDevices, rgb)
importFrom(graphics, abline, axis, barplot, mtext, par, plot, rect, text,
pairs, lines)
importFrom(grDevices, rainbow)
# Registering S3 methods
S3method(plot, snpgdsPCAClass)
S3method(plot, snpgdsEigMixClass)
S3method(print, snpgdsPCAClass)
S3method(print, snpgdsEigMixClass)
S3method(print, snpgdsPCASNPLoadingClass)
S3method(print, snpgdsEigMixSNPLoadingClass)
S3method(print, snpgdsIBDClass)
S3method(print, snpgdsDissClass)
S3method(print, snpgdsIBSClass)
S3method(print, snpgdsGRMClass)