forked from Bioconductor/GenomicFiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
73 lines (59 loc) · 1.75 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
import(methods)
importFrom(stats, rbinom)
import(BiocGenerics)
importFrom(MatrixGenerics, rowRanges)
import(S4Vectors)
import(IRanges)
import(GenomeInfoDb)
import(GenomicRanges)
import(SummarizedExperiment)
import(Rsamtools)
import(VariantAnnotation)
importFrom(GenomicAlignments, summarizeOverlaps, Union)
importMethodsFrom(GenomicAlignments, summarizeOverlaps)
import(rtracklayer)
import(BiocParallel)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 classes
###
exportClasses(
GenomicFiles,
VcfStack, RangedVcfStack
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 methods for generics not defined in GenomicFiles
###
exportMethods(
"[", dim, names, show, yieldSize, 'colData<-',
countBam, scanBam, summarizeOverlaps,
coverage, summary,
seqinfo, 'seqinfo<-',
rowRanges, 'rowRanges<-', assay, colData,
vcfFields
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 generics & methods for generics defined in GenomicFiles
###
export(
## GenomicFiles class:
GenomicFiles, files, 'files<-',
reduceByFile, reduceByRange, pack, unpack,
## VcfStack class:
rownames, colnames
)
exportMethods(
## GenomicFiles class
GenomicFiles, files, 'files<-',
reduceByFile, reduceByRange, pack, unpack,
## VcfStack class:
rownames, colnames
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
## file registry:
.fileTypeRegistry, registerFileType, findTypeRegistry, makeFileType,
reduceFiles, reduceRanges, reduceByYield, REDUCEsampler,
VcfStack, RangedVcfStack, readVcfStack, getVCFPath, paths1kg
)