-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNAMESPACE
1600 lines (1572 loc) · 70.7 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# IMPORTS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
importFrom("R.oo", "throw")
importFrom("R.methodsS3", "setMethodS3")
importFrom("R.oo", "setConstructorS3")
importFrom("R.oo", "extend")
importFrom("R.oo", "uses")
## Importing Class:es
importFrom("R.oo", "Class")
importFrom("R.oo", "Interface")
importFrom("R.oo", "Object")
importFrom("R.oo", "Package")
importFrom("R.utils", "GenericSummary")
importFrom("R.utils", "Options")
importFrom("R.utils", "ProgressBar")
importFrom("R.filesets", "getChecksumFile")
importFrom("R.filesets", "getChecksumFileSet")
importFrom("R.filesets", "GenericDataFile")
importFrom("R.filesets", "GenericDataFileSet")
importFrom("R.filesets", "TabularTextFile")
importFrom("aroma.core", "AromaCellPositionFile")
importFrom("aroma.core", "AromaCellSequenceFile")
importFrom("aroma.core", "AromaCellTabularBinaryFile")
importFrom("aroma.core", "AromaMicroarrayDataFile")
importFrom("aroma.core", "AromaMicroarrayDataSet")
importFrom("aroma.core", "AromaMicroarrayDataSetTuple")
importFrom("aroma.core", "AromaPackage")
importFrom("aroma.core", "AromaPlatform")
importFrom("aroma.core", "AromaTransform")
importFrom("aroma.core", "AromaUflFile")
importFrom("aroma.core", "AromaUgcFile")
importFrom("aroma.core", "AromaUgpFile")
importFrom("aroma.core", "AromaUnitGenotypeCallFile")
importFrom("aroma.core", "AromaUnitGenotypeCallSet")
importFrom("aroma.core", "AromaUnitSignalBinaryFile")
importFrom("aroma.core", "AromaUnitSignalBinarySet")
importFrom("aroma.core", "AromaUnitTabularBinaryFile")
importFrom("aroma.core", "AromaUnitTotalCnBinaryFile")
importFrom("aroma.core", "AromaUnitTotalCnBinarySet")
importFrom("aroma.core", "AromaUnitFracBCnBinaryFile")
importFrom("aroma.core", "AromaUnitFracBCnBinarySet")
importFrom("aroma.core", "ChromosomalModel")
importFrom("aroma.core", "Explorer")
importFrom("aroma.core", "SampleAnnotationSet")
## Importing generics
importFrom("aroma.core", "allocate")
importFrom("aroma.core", "as.CopyNumberDataSetTuple")
importFrom("aroma.core", "byChipType")
importFrom("aroma.core", "exportTotalCnRatioSet")
importFrom("aroma.core", "findByChipType")
importFrom("aroma.core", "findUnitsTodo")
importFrom("aroma.core", "fit")
importFrom("aroma.core", "fixSearchPath")
importFrom("aroma.core", "getAlias")
importFrom("aroma.core", "getAM")
importFrom("aroma.core", "getAromaUflFile")
importFrom("aroma.core", "getAromaUgpFile")
importFrom("aroma.core", "getArraysOfInput")
importFrom("aroma.core", "getAverageFile")
importFrom("aroma.core", "getChipType")
importFrom("aroma.core", "getChromosomes")
importFrom("aroma.core", "getDefaultExtension")
importFrom("aroma.core", "getExpectedOutputFullnames")
importFrom("aroma.core", "getImage")
importFrom("aroma.core", "getInputDataSet")
importFrom("aroma.core", "getListOfUnitNamesFiles")
importFrom("aroma.core", "getListOfUnitTypesFiles")
importFrom("aroma.core", "getMainPath")
importFrom("aroma.core", "getNameOfInput")
importFrom("aroma.core", "getNumberOfFilesAveraged")
importFrom("aroma.core", "getOutputDataSet")
importFrom("aroma.core", "getOutputFiles")
importFrom("aroma.core", "getParameters")
importFrom("aroma.core", "getPlatform")
importFrom("aroma.core", "getPloidy")
importFrom("aroma.core", "getPositions")
importFrom("aroma.core", "getReference")
importFrom("aroma.core", "getRegions")
importFrom("aroma.core", "getRootPath")
importFrom("aroma.core", "getSetTuple")
importFrom("aroma.core", "getTagsOfInput")
importFrom("aroma.core", "getUnitNames")
importFrom("aroma.core", "getUnitNamesFile")
importFrom("aroma.core", "getUnitsOnChromosome")
importFrom("aroma.core", "getUnitsOnChromosomes")
importFrom("aroma.core", "getUnitTypes")
importFrom("aroma.core", "getUnitTypesFile")
importFrom("aroma.core", "getWeights")
importFrom("aroma.core", "getXAM")
importFrom("aroma.core", "hasAlleleBFractions")
importFrom("aroma.core", "hasStrandiness")
importFrom("aroma.core", "importFrom")
importFrom("aroma.core", "importFromGenericTabularFile")
importFrom("aroma.core", "isMissing")
importFrom("aroma.core", "nbrOfArrays")
importFrom("aroma.core", "nbrOfCells")
importFrom("aroma.core", "nbrOfChipTypes")
importFrom("aroma.core", "nbrOfEnzymes")
importFrom("aroma.core", "nbrOfUnits")
importFrom("aroma.core", "process")
importFrom("aroma.core", "readHeader")
importFrom("aroma.core", "rescale")
importFrom("aroma.core", "setAlias")
importFrom("aroma.core", "setArrays")
importFrom("aroma.core", "setReference")
importFrom("aroma.core", "setup")
importFrom("aroma.core", "stextChipType")
importFrom("aroma.core", "updateSetupExplorerFile")
importFrom("aroma.core", "writeImage")
importFrom("aroma.core", "writeRegions")
importFrom("R.filesets", "byName")
importFrom("R.filesets", "byPath")
importFrom("R.filesets", "extractMatrix")
importFrom("R.filesets", "findByName")
importFrom("R.filesets", "fromFile")
importFrom("R.filesets", "getAsteriskTags")
importFrom("R.filesets", "getAttribute")
importFrom("R.filesets", "getColumnNames")
importFrom("R.filesets", "getDefaultColumnNames")
importFrom("R.filesets", "getDefaultFullName")
importFrom("R.filesets", "getExtensionPattern")
importFrom("R.filesets", "getFileClass")
importFrom("R.filesets", "getFilenameExtension")
importFrom("R.filesets", "getFullName")
importFrom("R.filesets", "getFullNames")
importFrom("R.filesets", "getHeader")
importFrom("R.filesets", "getReadArguments")
importFrom("R.filesets", "getTags")
importFrom("R.filesets", "hasColumnHeader")
importFrom("R.filesets", "nbrOfColumns")
importFrom("R.filesets", "nbrOfRows")
importFrom("R.filesets", "readDataFrame")
importFrom("R.filesets", "setTags")
importFrom("R.filesets", "translateColumnNames")
importFrom("R.filesets", "translateFullName")
importFrom("R.filesets", "update2")
importFrom("R.filesets", "verify")
importFrom("R.oo", "clearCache") ## Multi-sources: R.oo, R.cache, R.filesets
importFrom("R.oo", "clone") ## Multi-sources: R.oo, R.filesets, oligoClasses
importFrom("R.oo", "getCalls")
importFrom("R.oo", "getFields")
importFrom("R.oo", "getName") ## Multi-sources: R.oo, R.filesets
importFrom("R.oo", "getPath") ## Multi-sources: R.oo, R.filesets
importFrom("R.oo", "getPosition")
importFrom("R.utils", "getLabel")
importFrom("R.utils", "setLabel")
importFrom("R.utils", "validate") ## Multi-sources: R.utils, R.filesets
## Importing functions
importFrom("aroma.apd", "readApd")
importFrom("aroma.apd", "writeApd")
importFrom("aroma.core", "allocateFromUnitNamesFile")
importFrom("aroma.core", "backtransformGenotypeCone")
importFrom("aroma.core", "backtransformMultiDimensionalCone")
importFrom("aroma.core", "countBases")
importFrom("aroma.core", "display")
importFrom("aroma.core", "extractGenotypes")
importFrom("aroma.core", "findAnnotationDataByChipType")
importFrom("aroma.core", "findPngDevice")
importFrom("aroma.core", "fitGenotypeCone")
importFrom("aroma.core", "fitMultiDimensionalCone")
importFrom("aroma.core", "fitSplineBlockPolish")
importFrom("aroma.core", "fitWHLAPLM.matrix")
importFrom("aroma.core", "fixSearchPathInternal")
importFrom("aroma.core", "getArrays")
importFrom("aroma.core", "getCacheKey")
importFrom("aroma.core", "getChipTypes")
importFrom("aroma.core", "getDataFileMatrix")
importFrom("aroma.core", "getParametersAsString")
importFrom("aroma.core", "getParentPath")
importFrom("aroma.core", "getProbeLength")
importFrom("aroma.core", "getProbePositionEffectDesignMatrix")
importFrom("aroma.core", "getRam")
importFrom("aroma.core", "getReferenceSetTuple")
importFrom("aroma.core", "getTableOfArrays")
importFrom("aroma.core", "getUnitsAt")
importFrom("aroma.core", "groupBySnpNucleotides")
importFrom("aroma.core", "isAverageFile")
importFrom("aroma.core", "isHeterozygous")
importFrom("aroma.core", "lapplyInChunks")
importFrom("aroma.core", "locallyUnique")
importFrom("aroma.core", "mergeBoxplotStats")
importFrom("aroma.core", "processTime")
importFrom("aroma.core", "readFooter")
importFrom("aroma.core", "readSequenceMatrix")
importFrom("aroma.core", "readTargetStrands")
importFrom("aroma.core", "smoothWRMA")
importFrom("aroma.core", "smoothWSA")
importFrom("aroma.core", "splitInChunks")
importFrom("aroma.core", "stextLabels")
importFrom("aroma.core", "stextSize")
importFrom("aroma.core", "updateGenotypes")
importFrom("aroma.core", "updateSequenceMatrix")
importFrom("aroma.core", "updateSequences")
importFrom("aroma.core", "updateTargetStrands")
importFrom("aroma.core", "writeFooter")
importFrom("matrixStats", "colMaxs")
importFrom("matrixStats", "colMedians")
importFrom("matrixStats", "colQuantiles")
importFrom("matrixStats", "indexByRow")
importFrom("matrixStats", "colAlls")
importFrom("matrixStats", "rowAnys")
importFrom("matrixStats", "rowMads")
importFrom("matrixStats", "rowMedians") ## Multi-sources: matrixStats, Biobase
importFrom("matrixStats", "rowSds")
importFrom("matrixStats", "rowSums2")
importFrom("methods", "new")
importFrom("R.cache", "getChecksum") ## Multi-sources: R.cache, R.filesets
importFrom("R.cache", "loadCache")
importFrom("R.cache", "saveCache")
importFrom("R.devices", "devDone")
importFrom("R.filesets", "copyTo")
importFrom("R.filesets", "dropRootPathTags")
importFrom("R.filesets", "getFile")
importFrom("R.filesets", "getFiles")
importFrom("R.filesets", "getFileSize")
importFrom("R.filesets", "getNames")
importFrom("R.filesets", "getOneFile")
importFrom("R.filesets", "getPathname")
importFrom("R.filesets", "getPathnames")
importFrom("R.filesets", "getSets")
importFrom("R.filesets", "hasTag")
importFrom("R.filesets", "indexOf")
importFrom("R.filesets", "readColumns")
importFrom("R.filesets", "readRawHeader")
importFrom("R.filesets", "renameTo")
importFrom("R.filesets", "setAttributesBy")
importFrom("R.filesets", "setAttributesByTags")
importFrom("R.methodsS3", "appendVarArgs")
importFrom("R.oo", "attachLocally")
importFrom("R.oo", "equals")
importFrom("R.oo", "getDate")
importFrom("R.oo", "getEnvironment")
importFrom("R.oo", "getKnownSubclasses")
importFrom("R.oo", "getVersion")
importFrom("R.oo", "isAbstract")
importFrom("R.oo", "isOlderThan")
importFrom("R.oo", "isVisible")
importFrom("R.oo", "ll")
importFrom("R.oo", "newInstance")
importFrom("R.oo", "objectSize")
importFrom("R.oo", "startupMessage")
importFrom("R.oo", "trim")
importFrom("R.utils", "callHooks")
importFrom("R.utils", "capitalize")
importFrom("R.utils", "capture")
importFrom("R.utils", "cat") ## Multi-sources: R.utils, base
importFrom("R.utils", "createLink")
importFrom("R.utils", "dataFrame")
importFrom("R.utils", "dimNA<-")
importFrom("R.utils", "doCall")
importFrom("R.utils", "enter")
importFrom("R.utils", "exit")
importFrom("R.utils", "extract") ## Multi-sources: R.utils, R.filesets
importFrom("R.utils", "filePath")
importFrom("R.utils", "findFiles") ## Multi-sources: R.utils, affxparser
importFrom("R.utils", "getFilename") ## Multi-sources: R.utils, R.filesets
importFrom("R.utils", "getLeaves")
importFrom("R.utils", "getOption") ## Multi-sources: R.utils, base
importFrom("R.utils", "getParent")
importFrom("R.utils", "getThreshold")
importFrom("R.utils", "hasOption")
importFrom("R.utils", "hpaste")
importFrom("R.utils", "hsize")
importFrom("R.utils", "increase")
importFrom("R.utils", "insert")
importFrom("R.utils", "isDirectory")
importFrom("R.utils", "isDone")
importFrom("R.utils", "isFile") ## Multi-sources: R.utils, R.filesets
importFrom("R.utils", "isPackageInstalled")
importFrom("R.utils", "isPackageLoaded") ## Multi-sources: R.utils, oligoClasses
importFrom("R.utils", "isZero")
importFrom("R.utils", "less")
importFrom("R.utils", "loadObject")
importFrom("R.utils", "loadToEnv")
importFrom("R.utils", "more")
importFrom("R.utils", "moveInSearchPath")
importFrom("R.utils", "popState")
importFrom("R.utils", "popTemporaryFile")
importFrom("R.utils", "printf")
importFrom("R.utils", "pushState")
importFrom("R.utils", "pushTemporaryFile")
importFrom("R.utils", "readTable")
importFrom("R.utils", "reset")
importFrom("R.utils", "saveObject")
importFrom("R.utils", "seqToHumanReadable")
importFrom("R.utils", "setOption")
importFrom("R.utils", "stext")
importFrom("R.utils", "subplots")
importFrom("R.utils", "toAsciiRegExprPattern")
importFrom("R.utils", "toCamelCase")
importFrom("R.utils", "wrap")
importFrom("R.utils", "writeRaw")
importFrom("R.utils", "CmdArgsFunction")
## Manually adjusted
## Cannot import explicitly from 'base';
## importFrom("base", "parse") ## Multi-sources: R.utils, R.rsp, base
## importFrom("base", "readLines") ## Multi-sources: R.filesets, base
## importFrom("base", "gc") ## Multi-sources: R.oo, base
## importFrom("base", "warnings") ## Multi-sources: R.utils, base
## Importing other objects
importFrom("aroma.core", "aromaSettings")
## Manual imports
importFrom("R.utils", "Arguments")
importFrom("R.filesets", "append")
importFrom("grDevices",
"boxplot.stats", "col2rgb", "gray.colors", "rainbow")
importFrom("graphics",
"abline", "axis", "box", "bxp", "image", "layout", "lines",
"mtext", "par", "plot", "points", "smoothScatter", "text")
importFrom("methods", "as")
importFrom("stats",
"approx", "coef", "coefficients", "density",
"dnorm", "glm", "lm", "lowess", "mad", "median",
"medpolish", "na.omit", "predict", "quantile", "residuals",
"rnorm", "sd", "smooth.spline", "t.test", "var")
importFrom("utils",
"capture.output", "compareVersion", "data", "head",
"object.size", "packageDescription", "packageVersion",
"read.table", "str", "tail", "write.table")
importFrom("listenv", "listenv")
importFrom("future", "%<-%")
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Several packages are only optional or suggested for now, so
# we cannot assume they are available for import.
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if (FALSE) {
importFrom("aroma.light", "calibrateMultiscan")
importFrom("aroma.light", "normalizeFragmentLength")
importFrom("aroma.light", "normalizeQuantileSpline")
importFrom("aroma.light", "robustSmoothSpline")
importFrom("Biobase", "annotation") ## Multi-sources: Biobase, oligo, oligoClasses
importFrom("Biobase", "annotation<-")
importFrom("Biobase", "assayData")
importFrom("Biobase", "featureNames<-")
importFrom("Biobase", "phenoData<-")
importFrom("Biobase", "sampleNames<-") ## Multi-sources: Biobase, oligoClasses
importFrom("affxparser", "applyCdfGroups")
importFrom("affxparser", "cdfHeaderToCelHeader")
importFrom("affxparser", "cdfMergeAlleles")
importFrom("affxparser", "compareCdfs")
importFrom("affxparser", "convertCdf")
importFrom("affxparser", "convertCel")
importFrom("affxparser", "createCel")
importFrom("affxparser", "findCdf")
importFrom("affxparser", "invertMap")
importFrom("affxparser", "readBpmap")
importFrom("affxparser", "readBpmapHeader")
importFrom("affxparser", "readCcg")
importFrom("affxparser", "readCcgHeader")
importFrom("affxparser", "readCdf")
importFrom("affxparser", "readCdfCellIndices")
importFrom("affxparser", "readCdfGroupNames")
importFrom("affxparser", "readCdfHeader")
importFrom("affxparser", "readCdfIsPm")
importFrom("affxparser", "readCdfNbrOfCellsPerUnitGroup")
importFrom("affxparser", "readCdfQc")
importFrom("affxparser", "readCdfUnitNames")
importFrom("affxparser", "readCdfUnits")
importFrom("affxparser", "readCel")
importFrom("affxparser", "readCelHeader")
importFrom("affxparser", "readCelRectangle")
importFrom("affxparser", "readCelUnits")
importFrom("affxparser", "readPgfEnv")
importFrom("affxparser", "readPgfHeader")
importFrom("affxparser", "updateCel")
importFrom("affxparser", "updateCelUnits")
importFrom("affxparser", "writeCdfHeader")
importFrom("affxparser", "writeCdfQcUnits")
importFrom("affxparser", "writeCdfUnits")
importFrom("affy", "bg.adjust")
importFrom("affy", "cleancdfname")
importFrom("affy", "close") ## Multi-sources: affy, oligoClasses, base
importFrom("affy", "featureNames") ## Multi-sources: affy, Biobase
importFrom("affy", "fit.li.wong")
importFrom("affy", "image") ## Multi-sources: affy, oligo
importFrom("affyPLM", "summary") ## Multi-sources: affyPLM, DBI, base
importFrom("oligo", "cleanPlatformName")
importFrom("oligo", "coef")
importFrom("oligo", "db") ## Multi-sources: oligo, oligoClasses
importFrom("oligo", "geometry") ## Multi-sources: oligo, oligoClasses
importFrom("oligo", "getPlatformDesign")
importFrom("oligo", "ncol") ## Multi-sources: oligo, base
importFrom("oligo", "read.celfiles")
importFrom("oligo", "residuals")
importFrom("oligoClasses", "getM")
importFrom("oligoClasses", "mean") ## Multi-sources: oligoClasses, base
importFrom("DBI", "dbGetQuery")
importFrom("DBI", "dbListTables")
} # if (FALSE)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# EXPORTS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Export all public methods, that is, those without a preceeding dot
# in their names.
exportPattern("^[^\\.]")
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# DECLARATIONS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
S3method("doASCRMAv1", "default")
S3method("doASCRMAv2", "default")
S3method("doCRMAv1", "default")
S3method("doCRMAv2", "default")
S3method("doFIRMA", "default")
S3method("doGCRMA", "default")
S3method("doRMA", "default")
S3method("doCRMAv1", "AffymetrixCelSet")
S3method("doCRMAv2", "AffymetrixCelSet")
S3method("doFIRMA", "AffymetrixCelSet")
S3method("doGCRMA", "AffymetrixCelSet")
S3method("doRMA", "AffymetrixCelSet")
S3method("justRMA", "AffymetrixCelSet")
S3method("addColorMap", "ArrayExplorer")
S3method("addColorMap", "SpatialReporter")
S3method("addExclCells", "DChipQuantileNormalization")
S3method("allocate", "AromaCellMatchScoreFile")
S3method("allocate", "CrlmmParametersFile")
S3method("allocateFromCdf", "AffymetrixCelFile")
S3method("allocateFromCdf", "AromaCellCpgFile")
S3method("allocateFromCdf", "AromaCellMatchScoreFile")
S3method("allocateFromCdf", "AromaCellPositionFile")
S3method("allocateFromCdf", "AromaCellSequenceFile")
S3method("allocateFromCdf", "AromaUfcFile")
S3method("allocateFromCdf", "AromaUflFile")
S3method("allocateFromCdf", "AromaUnitGcContentFile")
S3method("allocateFromCdf", "AromaUnitTabularBinaryFile")
S3method("annotateMvsA", "AffymetrixCelFile")
S3method("append", "AffymetrixCelSet")
S3method("append", "CnagCfhSet")
S3method("applyAnyOrder", "CopyNumberChromosomalModel")
S3method("applyCCF0", "CopyNumberChromosomalModel")
S3method("applyCFC0", "CopyNumberChromosomalModel")
S3method("applyToUnitIntensities", "AffymetrixCelSet")
S3method("as.AffymetrixCelSet", "AffymetrixCelSet")
S3method("as.AffymetrixCelSet", "default")
S3method("as.AffymetrixCelSet", "list")
S3method("as.AffymetrixCnChpSet", "AffymetrixCnChpSet")
S3method("as.AffymetrixCnChpSet", "default")
S3method("as.AffymetrixCnChpSet", "list")
S3method("as.AffymetrixFileSet", "AffymetrixFileSet")
S3method("as.AffymetrixFileSet", "default")
S3method("as.AffymetrixFileSet", "list")
S3method("as.ChipEffectSetTuple", "ChipEffectSetTuple")
S3method("as.ChipEffectSetTuple", "default")
S3method("as.CnChipEffectSetTuple", "CnChipEffectSetTuple")
S3method("as.CnChipEffectSetTuple", "default")
S3method("as.CnagCfhSet", "CnagCfhSet")
S3method("as.CnagCfhSet", "default")
S3method("as.CnagCfhSet", "list")
S3method("as.CopyNumberDataSetTuple", "CnChipEffectSet")
S3method("as.DChipDcpSet", "DChipDcpSet")
S3method("as.DChipDcpSet", "default")
S3method("as.DChipDcpSet", "list")
S3method("as.character", "AffymetrixCdfFile")
S3method("as.character", "AffymetrixCelFile")
S3method("as.character", "AffymetrixCelSet")
S3method("as.character", "AffymetrixCelSetReporter")
S3method("as.character", "AffymetrixCnChpFile")
S3method("as.character", "AffymetrixCnChpSet")
S3method("as.character", "AffymetrixPgfFile")
S3method("as.character", "AffymetrixProbeTabFile")
S3method("as.character", "AromaChipTypeAnnotationFile")
S3method("as.character", "ArrayExplorer")
S3method("as.character", "ChipEffectFile")
S3method("as.character", "ChipEffectSet")
S3method("as.character", "CnagCfhFile")
S3method("as.character", "CnagCfhSet")
S3method("as.character", "DChipCdfBinFile")
S3method("as.character", "DChipDcpFile")
S3method("as.character", "DChipDcpSet")
S3method("as.character", "DChipQuantileNormalization")
S3method("as.character", "FirmaModel")
S3method("as.character", "GenericReporter")
S3method("as.character", "GenomeInformation")
S3method("as.character", "Model")
S3method("as.character", "ProbeAffinityFile")
S3method("as.character", "QualityAssessmentModel")
S3method("as.character", "ResidualFile")
S3method("as.character", "ResidualSet")
S3method("as.character", "SmoothMultiarrayModel")
S3method("as.character", "SnpInformation")
S3method("as.character", "SpatialReporter")
S3method("as.character", "TransformReport")
S3method("as.character", "WeightsFile")
S3method("as.character", "WeightsSet")
S3method("assertAnnotationData", "ASCRMAv2")
S3method("averageQuantile", "AffymetrixCelSet")
S3method("boxplotStats", "ChipEffectSet")
S3method("bpmapCluster2Cdf", "default")
S3method("byChipType", "AffymetrixCsvGenomeInformation")
S3method("byChipType", "AffymetrixProbeTabFile")
S3method("byChipType", "AffymetrixTabularFile")
S3method("byChipType", "AffymetrixTsvFile")
S3method("byChipType", "AromaCellMatchScoreFile")
S3method("byChipType", "AromaChipTypeAnnotationFile")
S3method("byChipType", "DChipCdfBinFile")
S3method("byChipType", "DChipGenomeInformation")
S3method("byChipType", "DChipSnpInformation")
S3method("byChipType", "GenomeInformation")
S3method("byChipType", "SnpInformation")
S3method("byChipType", "UflSnpInformation")
S3method("byChipType", "UgpGenomeInformation")
S3method("byName", "AffymetrixCelSet")
S3method("byName", "AffymetrixCnChpSet")
S3method("byName", "AromaChipTypeAnnotationFile")
S3method("byName", "CnagCfhSet")
S3method("byName", "CrlmmParametersSet")
S3method("byName", "DChipDcpSet")
S3method("byPath", "AffymetrixCelSet")
S3method("byPath", "AffymetrixCelSetTuple")
S3method("byPath", "AffymetrixCnChpSet")
S3method("byPath", "AffymetrixFileSet")
S3method("byPath", "ChipEffectSet")
S3method("byPath", "CnChipEffectSet")
S3method("byPath", "CnagCfhSet")
S3method("byPath", "CrlmmParametersSet")
S3method("byPath", "DChipDcpSet")
S3method("byPath", "ExonChipEffectSet")
S3method("byPath", "FirmaSet")
S3method("byPath", "ResidualSet")
S3method("byPath", "SnpChipEffectSet")
S3method("byPath", "WeightsSet")
S3method("calcRawCnStats", "CopyNumberChromosomalModel")
S3method("calcRawCnStats", "default")
S3method("calculateAffinities", "GcRmaBackgroundCorrection")
S3method("calculateAverages", "FragmentEquivalentClassNormalization")
S3method("calculateBaseline", "ChipEffectSet")
S3method("calculateConfidenceScores", "CrlmmModel")
S3method("calculateFieldBoxplotStats", "ChipEffectSet")
S3method("calculateMargins", "SpatialReporter")
S3method("calculateNuseBoxplotStats", "ChipEffectSet")
S3method("calculateParametersGsb", "AffymetrixCelSet")
S3method("calculateResidualSet", "FirmaModel")
S3method("calculateResidualSet", "ProbeLevelModel")
S3method("calculateRleBoxplotStats", "ChipEffectSet")
S3method("calculateTargetDistribution", "QuantileNormalization")
S3method("calculateWeights", "ExonRmaPlm")
S3method("calculateWeights", "FirmaModel")
S3method("calculateWeights", "ProbeLevelModel")
S3method("calibrateOne", "ReseqCrosstalkCalibration")
S3method("clearCache", "AffymetrixCelSet")
S3method("clearData", "AffymetrixCelFile")
S3method("clone", "AffymetrixCelFile")
S3method("clone", "AffymetrixCelSet")
S3method("clone", "AffymetrixCnChpFile")
S3method("clone", "CnagCfhFile")
S3method("clone", "CnagCfhSet")
S3method("compare", "AffymetrixCdfFile")
S3method("computeAffinities", "AffymetrixCdfFile")
S3method("computeAffinitiesByACS", "AffymetrixCdfFile")
S3method("convert", "AffymetrixCdfFile")
S3method("convertToUnique", "AffymetrixCelSet")
S3method("convertUnits", "AffymetrixCdfFile")
S3method("createExonByTranscriptCdf", "AffymetrixCdfFile")
S3method("createFrom", "AffymetrixCelFile")
S3method("createMonocellCdf", "AffymetrixCdfFile")
S3method("createOutputTuple", "SmoothMultiarrayModel")
S3method("createParamCdf", "ChipEffectFile")
S3method("createParamCdf", "FirmaFile")
S3method("createUniqueCdf", "AffymetrixCdfFile")
S3method("decode", "ParameterCelFile")
S3method("dim", "DChipDcpFile")
S3method("encode", "ParameterCelFile")
S3method("excludeChrXFromFit", "DChipQuantileNormalization")
S3method("exportAromaSignalBinaryFileList", "CnChipEffectFile")
S3method("exportTotalAndFracB", "CnChipEffectFile")
S3method("exportTotalAndFracB", "CnChipEffectSet")
S3method("exportTotalAndFracB", "DChipDcpSet")
S3method("exportTotalAndFracB", "SnpChipEffectFile")
S3method("exportTotalAndFracB", "SnpChipEffectSet")
S3method("exportTotalCnRatioSet", "AffymetrixCnChpSet")
S3method("extractAffyBatch", "AffymetrixCelSet")
S3method("extractAffyBatch", "ChipEffectSet")
S3method("extractAlleleSet", "SnpChipEffectSet")
S3method("extractCNT", "SnpChipEffectFile")
S3method("extractCNT", "SnpChipEffectSet")
S3method("extractChromosomalDataFrame", "ChipEffectFile")
S3method("extractChromosomalDataFrame", "ChipEffectSet")
S3method("extractDataFrame", "ParameterCelFile")
S3method("extractDataFrame", "ParameterCelSet")
S3method("extractExpressionSet", "ChipEffectSet")
S3method("extractFeatureSet", "AffymetrixCelSet")
S3method("extractLogRatios", "AffymetrixCnChpFile")
S3method("extractLogRatios", "AffymetrixCnChpSet")
S3method("extractMatrix", "AffymetrixCelFile")
S3method("extractMatrix", "AffymetrixCelSet")
S3method("extractMatrix", "ChipEffectFile")
S3method("extractMatrix", "ChipEffectSet")
S3method("extractMatrix", "FirmaFile")
S3method("extractMatrix", "FirmaSet")
S3method("extractMatrix", "ParameterCelFile")
S3method("extractMatrix", "ParameterCelSet")
S3method("extractSnpCnvQSet", "SnpChipEffectSet")
S3method("extractSnpFeatureSet", "AffymetrixCelSet")
S3method("extractSnpQSet", "SnpChipEffectSet")
S3method("extractTheta", "ChipEffectFile")
S3method("extractTheta", "ChipEffectSet")
S3method("extractTheta", "CnChipEffectFile")
S3method("extractTheta", "CnChipEffectSet")
S3method("extractTheta", "DChipDcpFile")
S3method("extractTheta", "DChipDcpSet")
S3method("extractTheta", "SnpChipEffectFile")
S3method("extractTheta", "SnpChipEffectSet")
S3method("extractTheta", "SnpCnvQSet")
S3method("extractTheta", "SnpQSet")
S3method("extractTotalAndFracB", "SnpChipEffectFile")
S3method("extractTotalAndFreqB", "CnChipEffectFile")
S3method("extractTotalAndFreqB", "CnChipEffectSet")
S3method("extractTotalAndFreqB", "SnpChipEffectSet")
S3method("extractTotalAndFreqB", "default")
S3method("findByCdf2", "default")
S3method("findByChipType", "AffymetrixCdfFile")
S3method("findByChipType", "AffymetrixCsvFile")
S3method("findByChipType", "AffymetrixCsvGenomeInformation")
S3method("findByChipType", "AffymetrixNetAffxCsvFile")
S3method("findByChipType", "AffymetrixPgfFile")
S3method("findByChipType", "AffymetrixProbeTabFile")
S3method("findByChipType", "AffymetrixTabularFile")
S3method("findByChipType", "AffymetrixTsvFile")
S3method("findByChipType", "AromaChipTypeAnnotationFile")
S3method("findByChipType", "DChipCdfBinFile")
S3method("findByChipType", "DChipGenomeInformation")
S3method("findByChipType", "DChipSnpInformation")
S3method("findByChipType", "UflSnpInformation")
S3method("findByChipType", "UgpGenomeInformation")
S3method("findByName", "AffymetrixCelSet")
S3method("findByName", "AffymetrixCnChpSet")
S3method("findByName", "ChipEffectSet")
S3method("findByName", "CnagCfhSet")
S3method("findByName", "DChipDcpSet")
S3method("findTargetDistributionFile", "QuantileNormalization")
S3method("findUnitsTodo", "AlleleSummation")
S3method("findUnitsTodo", "ChipEffectFile")
S3method("findUnitsTodo", "ChipEffectSet")
S3method("findUnitsTodo", "CrlmmModel")
S3method("findUnitsTodo", "CrlmmParametersFile")
S3method("findUnitsTodo", "CrlmmParametersSet")
S3method("findUnitsTodo", "ExonChipEffectSet")
S3method("findUnitsTodo", "FirmaFile")
S3method("findUnitsTodo", "FirmaModel")
S3method("findUnitsTodo", "FirmaSet")
S3method("findUnitsTodo", "ProbeLevelModel")
S3method("findUnitsTodo", "QualityAssessmentFile")
S3method("findUnitsTodo", "ResidualFile")
S3method("findUnitsTodo", "ResidualSet")
S3method("findUnitsTodo", "UnitModel")
S3method("findUnitsTodo", "WeightsFile")
S3method("findUnitsTodo", "WeightsSet")
S3method("fit", "CrlmmModel")
S3method("fit", "FirmaModel")
S3method("fit", "Model")
S3method("fit", "ProbeLevelModel")
S3method("fit", "SingleArrayUnitModel")
S3method("fit", "SmoothMultiarrayModel")
S3method("fitCnProbes", "UnitModel")
S3method("fitOne", "AbstractProbeSequenceNormalization")
S3method("fitOne", "BaseCountNormalization")
S3method("fitOne", "LinearModelProbeSequenceNormalization")
S3method("fitOne", "MatNormalization")
S3method("fitOne", "ReseqCrosstalkCalibration")
S3method("fitOne", "ScaleNormalization3")
S3method("fitOne", "UnitTypeScaleNormalization")
S3method("fitOneArray", "SingleArrayUnitModel")
S3method("fitOneChromosome", "SmoothMultiarrayModel")
S3method("fitPlasqUnit", "matrix")
S3method("fitQuantileNormFcn", "AffymetrixCelFile")
S3method("fixSearchPath", "AromaAffymetrix")
S3method("fromCdf", "AffymetrixProbeTabFile")
S3method("fromCdf", "GenomeInformation")
S3method("fromCdf", "SnpInformation")
S3method("fromDataFile", "ChipEffectFile")
S3method("fromDataFile", "FirmaFile")
S3method("fromDataFile", "ResidualFile")
S3method("fromDataFile", "WeightsFile")
S3method("fromDataSet", "ChipEffectSet")
S3method("fromDataSet", "FirmaSet")
S3method("fromDataSet", "GenomeInformation")
S3method("fromDataSet", "ResidualSet")
S3method("fromDataSet", "SnpInformation")
S3method("fromDataSet", "WeightsSet")
S3method("fromFile", "AffymetrixCdfFile")
S3method("fromFile", "AffymetrixCelFile")
S3method("fromFile", "AffymetrixCnChpFile")
S3method("fromFile", "AffymetrixPgfFile")
S3method("fromFile", "AromaChipTypeAnnotationFile")
S3method("fromFile", "CnagCfhFile")
S3method("fromFile", "DChipCdfBinFile")
S3method("fromFile", "DChipDcpFile")
S3method("getACSFile", "AffymetrixCdfFile")
S3method("getAM", "ChipEffectFile")
S3method("getAM", "ChipEffectSet")
S3method("getAlias", "ArrayExplorer")
S3method("getAlias", "GenericReporter")
S3method("getAlias", "Model")
S3method("getAlias", "TransformReport")
S3method("getAlleleCellPairs", "AffymetrixCdfFile")
S3method("getAlleleProbePairs", "AffymetrixCdfFile")
S3method("getAlleleProbePairs2", "AffymetrixCdfFile")
S3method("getAlleleProbePairs3", "AffymetrixCdfFile")
S3method("getAm", "AffymetrixCelFile")
S3method("getAromaCellMatchScoreFile", "MatNormalization")
S3method("getAromaCellPositionFile", "MatSmoothing")
S3method("getAromaCellSequenceFile", "AbstractProbeSequenceNormalization")
S3method("getAromaCellSequenceFile", "AffymetrixCdfFile")
S3method("getAromaUfcFile", "FragmentEquivalentClassNormalization")
S3method("getAromaUflFile", "UflSnpInformation")
S3method("getAromaUgpFile", "UgpGenomeInformation")
S3method("getAromaUnitFracBCnBinarySet", "default")
S3method("getAromaUnitTotalCnBinarySet", "default")
S3method("getArrayNames", "AffymetrixAptSummaryFile")
S3method("getArraysOfInput", "ArrayExplorer")
S3method("getAsFullCelFile", "ChipEffectFile")
S3method("getAsFullCelSet", "ChipEffectSet")
S3method("getAsteriskTags", "AdditiveCovariatesNormalization")
S3method("getAsteriskTags", "AffineCnPlm")
S3method("getAsteriskTags", "AffinePlm")
S3method("getAsteriskTags", "AffineSnpPlm")
S3method("getAsteriskTags", "AlleleSummation")
S3method("getAsteriskTags", "AllelicCrosstalkCalibration")
S3method("getAsteriskTags", "ArrayExplorer")
S3method("getAsteriskTags", "AvgCnPlm")
S3method("getAsteriskTags", "AvgPlm")
S3method("getAsteriskTags", "AvgSnpPlm")
S3method("getAsteriskTags", "BaseCountNormalization")
S3method("getAsteriskTags", "BasePositionNormalization")
S3method("getAsteriskTags", "CrlmmModel")
S3method("getAsteriskTags", "ExonRmaPlm")
S3method("getAsteriskTags", "FirmaModel")
S3method("getAsteriskTags", "FragmentEquivalentClassNormalization")
S3method("getAsteriskTags", "FragmentLengthNormalization")
S3method("getAsteriskTags", "GenericReporter")
S3method("getAsteriskTags", "HetLogAddCnPlm")
S3method("getAsteriskTags", "HetLogAddPlm")
S3method("getAsteriskTags", "HetLogAddSnpPlm")
S3method("getAsteriskTags", "LimmaBackgroundCorrection")
S3method("getAsteriskTags", "MatNormalization")
S3method("getAsteriskTags", "MbeiCnPlm")
S3method("getAsteriskTags", "MbeiPlm")
S3method("getAsteriskTags", "MbeiSnpPlm")
S3method("getAsteriskTags", "Model")
S3method("getAsteriskTags", "NormExpBackgroundCorrection")
S3method("getAsteriskTags", "ProbeLevelModel")
S3method("getAsteriskTags", "ProbeLevelTransform3")
S3method("getAsteriskTags", "QualityAssessmentModel")
S3method("getAsteriskTags", "ReseqCrosstalkCalibration")
S3method("getAsteriskTags", "RmaCnPlm")
S3method("getAsteriskTags", "RmaPlm")
S3method("getAsteriskTags", "RmaSnpPlm")
S3method("getAsteriskTags", "ScaleNormalization")
S3method("getAsteriskTags", "SmoothMultiarrayModel")
S3method("getAsteriskTags", "SmoothRmaModel")
S3method("getAsteriskTags", "SmoothSaModel")
S3method("getAsteriskTags", "SnpChipEffectGroupMerge")
S3method("getAsteriskTags", "UnitModel")
S3method("getAverage", "AffymetrixCelSet")
S3method("getAverage", "CnagCfhSet")
S3method("getAverageAsinh", "AffymetrixCelSet")
S3method("getAverageAsinh", "CnagCfhSet")
S3method("getAverageFile", "AffymetrixCelSet")
S3method("getAverageFile", "ChipEffectSet")
S3method("getAverageFile", "CnChipEffectSet")
S3method("getAverageFile", "CnagCfhSet")
S3method("getAverageFile", "ExonChipEffectSet")
S3method("getAverageFile", "ResidualSet")
S3method("getAverageFile", "SnpChipEffectSet")
S3method("getAverageFile", "WeightsSet")
S3method("getAverageLog", "AffymetrixCelSet")
S3method("getAverageLog", "CnagCfhSet")
S3method("getBandwidth", "SmoothMultiarrayModel")
S3method("getBaseline", "ChipEffectSet")
S3method("getBaseline", "CnChipEffectSet")
S3method("getBaseline", "SnpChipEffectSet")
S3method("getBlockSizes", "SpatialRowColumnNormalization")
S3method("getCalculateResidualsFunction", "AvgPlm")
S3method("getCalculateResidualsFunction", "ProbeLevelModel")
S3method("getCalculateResidualsFunction", "RmaPlm")
S3method("getCallSet", "CrlmmModel")
S3method("getCalls", "DChipDcpFile")
S3method("getCdf", "AdditiveCovariatesNormalization")
S3method("getCdf", "AffymetrixCelFile")
S3method("getCdf", "AffymetrixCelSet")
S3method("getCdf", "AffymetrixCnChpFile")
S3method("getCdf", "AffymetrixCnChpSet")
S3method("getCdf", "AffymetrixProbeTabFile")
S3method("getCdf", "AffymetrixTsvFile")
S3method("getCdf", "AromaUnitTabularBinaryFile")
S3method("getCdf", "ChipEffectGroupMerge")
S3method("getCdf", "CnagCfhFile")
S3method("getCdf", "CnagCfhSet")
S3method("getCdf", "FirmaModel")
S3method("getCdf", "FragmentEquivalentClassNormalization")
S3method("getCdf", "FragmentLengthNormalization")
S3method("getCdf", "GcContentNormalization")
S3method("getCdf", "Model")
S3method("getCdf", "QualityAssessmentModel")
S3method("getCdf", "TransformReport")
S3method("getCdfBin", "DChipDcpSet")
S3method("getCellDim", "DChipCdfBinFile")
S3method("getCellIndices", "AffymetrixCdfFile")
S3method("getCellIndices", "ChipEffectFile")
S3method("getCellIndices", "ChipEffectSet")
S3method("getCellIndices", "CnChipEffectFile")
S3method("getCellIndices", "CnPlm")
S3method("getCellIndices", "CnProbeAffinityFile")
S3method("getCellIndices", "ExonChipEffectFile")
S3method("getCellIndices", "ExonProbeAffinityFile")
S3method("getCellIndices", "ExonRmaPlm")
S3method("getCellIndices", "FirmaFile")
S3method("getCellIndices", "FirmaSet")
S3method("getCellIndices", "ProbeAffinityFile")
S3method("getCellIndices", "ResidualFile")
S3method("getCellIndices", "ResidualSet")
S3method("getCellIndices", "SnpChipEffectFile")
S3method("getCellIndices", "SnpPlm")
S3method("getCellIndices", "SnpProbeAffinityFile")
S3method("getCellIndices", "UnitModel")
S3method("getCellIndices", "WeightsFile")
S3method("getCellIndices", "WeightsSet")
S3method("getCellMapForMainCdf", "ChipEffectFile")
S3method("getCellQuartets", "AffymetrixCdfFile")
S3method("getCellsTo", "ProbeLevelTransform3")
S3method("getCellsToFit", "ProbeLevelTransform3")
S3method("getCellsToInternal", "ProbeLevelTransform3")
S3method("getCellsToUpdate", "ProbeLevelTransform3")
S3method("getChipEffectFileClass", "ChipEffectSet")
S3method("getChipEffectFileClass", "CnChipEffectSet")
S3method("getChipEffectFileClass", "ExonChipEffectSet")
S3method("getChipEffectFileClass", "SnpChipEffectSet")
S3method("getChipEffectSet", "AlleleSummation")
S3method("getChipEffectSet", "CnPlm")
S3method("getChipEffectSet", "ExonRmaPlm")
S3method("getChipEffectSet", "ProbeLevelModel")
S3method("getChipEffectSet", "QualityAssessmentModel")
S3method("getChipEffectSet", "SnpPlm")
S3method("getChipEffectSetClass", "AlleleSummation")
S3method("getChipEffectSetClass", "CnPlm")
S3method("getChipEffectSetClass", "ExonRmaPlm")
S3method("getChipEffectSetClass", "ProbeLevelModel")
S3method("getChipEffectSetClass", "SnpPlm")
S3method("getChipType", "AffymetrixAptSummaryFile")
S3method("getChipType", "AffymetrixCdfFile")
S3method("getChipType", "AffymetrixCelFile")
S3method("getChipType", "AffymetrixCelSet")
S3method("getChipType", "AffymetrixCelSetReporter")
S3method("getChipType", "AffymetrixCnChpFile")
S3method("getChipType", "AffymetrixPgfFile")
S3method("getChipType", "AffymetrixProbeTabFile")
S3method("getChipType", "AffymetrixTsvFile")
S3method("getChipType", "AromaChipTypeAnnotationFile")
S3method("getChipType", "CnagCfhFile")
S3method("getChipType", "CrlmmModel")
S3method("getChipType", "DChipCdfBinFile")
S3method("getChipType", "DChipDcpSet")
S3method("getChipType", "GenomeInformation")
S3method("getChipType", "SnpInformation")
S3method("getChipType", "UflSnpInformation")
S3method("getChipType", "UgpGenomeInformation")
S3method("getChromosomeStats", "GenomeInformation")
S3method("getChromosomes", "GenomeInformation")
S3method("getChromosomes", "UgpGenomeInformation")
S3method("getCnNames", "AffymetrixCdfFile")
S3method("getColorMaps", "ArrayExplorer")
S3method("getColorMaps", "SpatialReporter")
S3method("getColumnNames", "AffymetrixProbeTabFile")
S3method("getCombineAlleles", "CnChipEffectSet")
S3method("getCombineAlleles", "CnPlm")
S3method("getConfidenceScoreSet", "CrlmmModel")
S3method("getCovariates", "AdditiveCovariatesNormalization")
S3method("getCovariates", "GcContentNormalization2")
S3method("getCrlmmParametersSet", "CrlmmModel")
S3method("getCrlmmPriors", "CrlmmModel")
S3method("getCrlmmSNPs", "CrlmmModel")
S3method("getCrlmmSNPsOnChrX", "CrlmmModel")
S3method("getCrlmmSplineParameters", "CrlmmModel")
S3method("getData", "AffymetrixCelFile")
S3method("getData", "AffymetrixCelSet")
S3method("getData", "AffymetrixCnChpFile")
S3method("getData", "AffymetrixProbeTabFile")
S3method("getData", "AffymetrixTsvFile")
S3method("getData", "CnagCfhSet")
S3method("getData", "GenomeInformation")
S3method("getData", "SnpInformation")
S3method("getData", "UflSnpInformation")
S3method("getData", "UgpGenomeInformation")
S3method("getDataColumns", "GenomeInformation")
S3method("getDataColumns", "UflSnpInformation")
S3method("getDataColumns", "UgpGenomeInformation")
S3method("getDataFlat", "ChipEffectFile")
S3method("getDataFlat", "FirmaFile")
S3method("getDataFlat", "ResidualFile")
S3method("getDataFlat", "WeightsFile")
S3method("getDataPairs", "AllelicCrosstalkCalibration")
S3method("getDataSet", "AffymetrixCelSetReporter")
S3method("getDataSet", "ArrayExplorer")
S3method("getDataSet", "FirmaModel")
S3method("getDataSet", "Model")
S3method("getDataSet", "QualityAssessmentModel")
S3method("getDefaultColumnNames", "AromaCellMatchScoreFile")
S3method("getDefaultColumnNames", "AromaUfcFile")
S3method("getDefaultExtension", "AffymetrixCdfFile")
S3method("getDefaultExtension", "AffymetrixCsvFile")
S3method("getDefaultExtension", "AffymetrixCsvGenomeInformation")
S3method("getDefaultExtension", "AffymetrixNetAffxCsvFile")
S3method("getDefaultExtension", "AffymetrixPgfFile")
S3method("getDefaultExtension", "AffymetrixTsvFile")
S3method("getDefaultExtension", "AromaCellMatchScoreFile")
S3method("getDefaultExtension", "AromaChipTypeAnnotationFile")
S3method("getDefaultFullName", "AffymetrixFileSet")
S3method("getDefaultFullName", "CnagCfhSet")
S3method("getDefaultSettings", "AromaAffymetrix")
S3method("getDefaultSettings", "Package")
S3method("getDesignMatrix", "BaseCountNormalization")
S3method("getDesignMatrix", "BasePositionNormalization")
S3method("getDesignMatrix", "LinearModelProbeSequenceNormalization")
S3method("getDesignMatrix", "MatNormalization")
S3method("getDimension", "AffymetrixCdfFile")
S3method("getDimension", "AffymetrixPgfFile")
S3method("getExclCells", "DChipQuantileNormalization")
S3method("getExclCells", "QuantileNormalization")
S3method("getExcludes", "DChipDcpFile")
S3method("getExclusiveUnitSubsets", "FragmentEquivalentClassNormalization")
S3method("getExpandedCellMap", "ChipEffectFile")
S3method("getExpandedCellMap", "CnChipEffectFile")
S3method("getExpandedCellMap", "SnpChipEffectFile")
S3method("getExpectedOutputFullnames", "MatSmoothing")
S3method("getExtensionPattern", "AffymetrixCdfFile")
S3method("getExtensionPattern", "AffymetrixCelFile")
S3method("getExtensionPattern", "AffymetrixCnChpFile")
S3method("getExtensionPattern", "AffymetrixCsvFile")
S3method("getExtensionPattern", "AffymetrixPgfFile")
S3method("getExtensionPattern", "AffymetrixTsvFile")
S3method("getExtensionPattern", "AromaCellMatchScoreFile")
S3method("getExtensionPattern", "AromaUfcFile")
S3method("getExtensionPattern", "CnagCfhFile")
S3method("getExtensionPattern", "DChipDcpFile")
S3method("getField", "AffymetrixTsvFile")
S3method("getFields", "SnpInformation")
S3method("getFields", "UflSnpInformation")
S3method("getFileClass", "FirmaSet")
S3method("getFileFormat", "AffymetrixCdfFile")
S3method("getFileFormat", "AffymetrixCelFile")
S3method("getFileFormat", "AffymetrixCnChpFile")
S3method("getFileFormat", "DChipCdfBinFile")
S3method("getFileFormat", "DChipDcpFile")
S3method("getFileSet", "AffymetrixFileSetReporter")
S3method("getFileSetClass", "FirmaModel")
S3method("getFilenameExtension", "AromaCellMatchScoreFile")
S3method("getFilenameExtension", "AromaUfcFile")
S3method("getFilteredFragmentLengths", "FragmentLengthNormalization")
S3method("getFirmaScores", "FirmaModel")
S3method("getFirmaSet", "FirmaModel")
S3method("getFirstCellIndices", "AffymetrixCdfFile")
S3method("getFirstCellPerUnitIndices", "ExonChipEffectSet")
S3method("getFit", "BasePositionNormalization")
S3method("getFitSingleCellUnitFunction", "UnitModel")
S3method("getFitUnitFunction", "CnPlm")
S3method("getFitUnitFunction", "FirmaModel")
S3method("getFitUnitFunction", "MultiArrayUnitModel")
S3method("getFitUnitFunction", "SingleArrayUnitModel")
S3method("getFitUnitFunction", "UnitModel")
S3method("getFitUnitGroupFunction", "AffinePlm")
S3method("getFitUnitGroupFunction", "AvgPlm")
S3method("getFitUnitGroupFunction", "ExonRmaPlm")
S3method("getFitUnitGroupFunction", "FirmaModel")
S3method("getFitUnitGroupFunction", "HetLogAddPlm")
S3method("getFitUnitGroupFunction", "MbeiPlm")
S3method("getFitUnitGroupFunction", "MultiArrayUnitModel")
S3method("getFitUnitGroupFunction", "RmaPlm")
S3method("getFitUnitGroupFunction", "SingleArrayUnitModel")
S3method("getFitUnitGroupFunction", "SmoothMultiarrayModel")
S3method("getFitUnitGroupFunction", "SmoothRmaModel")
S3method("getFitUnitGroupFunction", "SmoothSaModel")