-
Notifications
You must be signed in to change notification settings - Fork 1
/
NAMESPACE
85 lines (73 loc) · 2.34 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
###########################################################################
# Shared object library load directives.
#
# Shared object library does not need to be called in the .onLoad function in
# zzz.r.
#
############################################################################
# Export directives. These directives export functions. S3 methods for
# classes declared in the package should be declared with the "S3method"
# directive.
#
importFrom(graph, edges)
importFrom(igraph, get.edge.attribute, get.edgelist, graph.data.frame,
igraph.options, list.edge.attributes, tkplot)
importFrom(pcalg, gaussCItest, skeleton)
importFrom(qtl, argmax.geno, calc.genoprob, create.map, find.marker,
find.pheno, fitqtl, makeqtl, nind, scanone, qtlversion)
importFrom(sem, sem)
importFrom(graphics, abline, lines, plot, points, text, title)
importFrom(stats, AIC, as.formula, cmdscale, coef, cor, cov, dist, formula,
lm, logLik, lowess, model.matrix, pchisq, pt, rnorm, runif, weighted.mean)
importFrom(utils, combn, compareVersion, write.table)
S3method(c, qtlnet)
S3method(subset, qtlnet)
export(best.qtlnet)
export(bic.join)
export(bic.qtlnet)
export(check.qtlnet)
export(dist.qtlnet)
export(edgematch.qtlnet)
export(est.qtlnet)
export(graph.qtlnet)
export(group.qtlnet)
export(igraph.qtlnet)
export(init.qtlnet)
export(loci.qtlnet)
export(mcmc.qtlnet)
export(parallel.qtlnet)
export(parents.qtlnet)
export(plotbic.qtlnet)
#export(Rgraphviz.qtlnet)
export(size.qtlnet)
export(subset.qtlnet)
export(write.qtlnet)
## The following have S3 methods:
export(plot.qtlnet)
export(print.qtlnet)
export(summary.qtlnet)
export(print.summary.qtlnet)
## QDG routines
export(qdg)
export(graph.qdg)
## Example routines.
export(generate.qtl.markers)
export(generate.qtl.pheno)
## SEM routines.
export(qdg.sem)
S3method(summary, qdg.sem)
S3method(print, qdg.sem)
## perm.test routines.
export(qdg.perm.test)
S3method(summary, qdg.perm.test)
S3method(print, qdg.perm.test)
##############################################################################
# S3method declarations. These will allow generic methods to function properly
# with functions such as "plot.qb" declared in the package.
#
S3method(plot, qtlnet)
S3method(print, qtlnet)
S3method(summary, qtlnet)
S3method(print, summary.qtlnet)
S3method(print, parents.qtlnet)
S3method(summary, parents.qtlnet)