-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
38 lines (28 loc) · 833 Bytes
/
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
import(methods)
import(reticulate)
import(BiocGenerics)
import(S4Vectors)
import(IRanges)
import(GenomeInfoDb)
import(GenomicRanges)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S3 methods
###
#S3method(r_to_py, GenomicRanges)
#S3method(py_to_r, pyranges.pyranges.PyRanges)
### We also export them thru the export() directive so that (a) they can be
### called directly, (b) tab-completion on the name of the generic shows them,
### and (c) methods() doesn't asterisk them.
export(
#r_to_py.GenomicRanges,
#py_to_r.pyranges.pyranges.PyRanges
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Other exports
###
export(
install_pandas, install_pyranges,
pandas, pyranges,
makePyRangesFromGRanges,
makeGRangesFromPyRanges
)