-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathNAMESPACE
executable file
·100 lines (79 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#loading
useDynLib(AnaCoDa, .registration = TRUE)
#imports
importFrom(methods, new)
importFrom(Rcpp, evalCpp)
importFrom(stats, cov, dlnorm)
importFrom(mvtnorm, dmvnorm)
importFrom(VGAM, vglm, multinomial)
importFrom(graphics, abline, axis, box, grid, hist,
layout, legend, lines, pairs, par, plot,
points, segments, text)
importFrom(stats, lm, median, qt, quantile, sd, acf)
importFrom(utils, write.csv)
importFrom(grDevices, adjustcolor, rgb)
importFrom(graphics , mtext, title)
S3method(length, Rcpp_Genome)
S3method(summary, Rcpp_Genome)
S3method(writeParameterObject, Rcpp_ROCParameter)
S3method(writeParameterObject, Rcpp_PAParameter)
S3method(writeParameterObject, Rcpp_PANSEParameter)
S3method(writeParameterObject, Rcpp_FONSEParameter)
S3method(convergence.test, Rcpp_MCMCAlgorithm)
S3method(convergence.test, Rcpp_Trace)
S3method(plot, Rcpp_ROCParameter)
S3method(plot, Rcpp_FONSEParameter)
S3method(plot, Rcpp_PAParameter)
S3method(plot, Rcpp_ROCModel)
S3method(plot, Rcpp_FONSEModel)
S3method(plot, Rcpp_MCMCAlgorithm)
S3method(plot, Rcpp_Trace)
#exports
#exportPattern("^[[:alpha:]]+") #<- if commented out, only functions explicitly exported will be exposed
export(
## Parameter object
"initializeParameterObject",
"getCSPEstimates",
"getMixtureAssignmentEstimate",
"findOptimalCodon",
"getExpressionEstimates",
"getSigmaEstimates",
"writeParameterObject",
"loadParameterObject",
"getTrace",
"getSelectionCoefficients",
"geomMean",
"calculateMarginalLogLikelihood",
#"confidenceInterval.plot",
## Model object
"initializeModelObject",
## Genome object
"initializeGenomeObject",
"getCodonCounts",
"getCodonCountsForAA",
"getNames",
"addObservedSynthesisRateSet",
"getObservedSynthesisRateSet",
"getCAIweights",
"getCAI",
"getNc",
"getNcAA",
"calculateSCUO",
## MCMC object
"initializeMCMCObject",
"runMCMC",
"setRestartSettings",
"writeMCMCObject",
"loadMCMCObject",
## Trace object
## shared functions
"convergence.test",
#Static C++ functions
"AAToCodon",
"aminoAcids",
"codonToAA",
"codons",
##
"acfMCMC",
"acfCSP"
)