edit NAMESPACE file to remove R CMD check warning
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rtreemix@88562 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rtreemix@28790 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,31 @@ |
1 |
+useDynLib(Rtreemix) |
|
2 |
+ |
|
3 |
+import(Biobase) |
|
4 |
+import(methods) |
|
5 |
+import(graph) |
|
6 |
+ |
|
7 |
+importFrom("Hmisc", "rcorr") |
|
8 |
+ |
|
9 |
+##import(Rgraphviz) |
|
10 |
+importFrom("graphics", "plot") |
|
11 |
+ |
|
12 |
+## Classes to be exported |
|
13 |
+exportClasses(RtreemixData, RtreemixModel, |
|
14 |
+ RtreemixSim, RtreemixStats, RtreemixGPS) |
|
15 |
+ |
|
16 |
+## Methods to be exported |
|
17 |
+exportMethods(initialize, print, show, |
|
18 |
+ Sample, Events, Patients, Description, sampleSize, eventsNum, ##RtreemixData |
|
19 |
+ "Events<-", "Patients<-", "Description<-", ##RtreemixData |
|
20 |
+ Weights, "Weights<-", WeightsCI, Resp, CompleteMat, Star, Trees, numTrees, getTree, getData, plot, ## RtreemixModel |
|
21 |
+ Model, LogLikelihoods, WLikelihoods, getResp, ## RtreemixStats |
|
22 |
+ SamplingMode, SamplingParam, GPS, gpsCI, ## RtreemixGPS |
|
23 |
+ SimPatterns, SamplingTimes, WaitingTimes, getModel, noDraws, ## RtreemixSim |
|
24 |
+ fit, bootstrap, likelihoods, gps, confIntGPS, sim, generate, distribution ## other methods |
|
25 |
+ ) |
|
26 |
+ |
|
27 |
+## Functions to be exported |
|
28 |
+export(Pval.dist, kullback.leibler, L1.dist, cosin.dist, L2.norm, euclidian.dist, rank.cor.dist, ## similarity measures for vectors |
|
29 |
+ get.tree.levels, comp.models, comp.models.levels, comp.trees, comp.trees.levels, ## similarity measures for tree topologies |
|
30 |
+ stability.sim ## stability analysis function |
|
31 |
+ ) |