-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathNAMESPACE
More file actions
102 lines (80 loc) · 2.52 KB
/
NAMESPACE
File metadata and controls
102 lines (80 loc) · 2.52 KB
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
import(methods)
importFrom(utils, download.file, read.delim, read.table, read.csv,
write.table, as.roman)
importFrom(stats, setNames)
import(BiocGenerics)
import(S4Vectors)
import(IRanges) # for CompressedList
import(Seqinfo)
import(UCSC.utils)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
## utils.R:
DEFAULT_CIRC_SEQS,
## list_ftp_dir.R:
list_ftp_dir,
## NCBI-utils.R:
find_NCBI_assembly_ftp_dir,
fetch_assembly_report,
## getChromInfoFromNCBI.R:
registered_NCBI_assemblies,
getChromInfoFromNCBI,
saveChromInfoFromNCBI,
## getChromInfoFromUCSC.R:
registered_UCSC_genomes,
getChromInfoFromUCSC,
get_and_fix_chrom_info_from_UCSC,
saveChromInfoFromUCSC,
## getChromInfoFromEnsembl.R:
getChromInfoFromEnsembl,
## loadTaxonomyDb.R:
loadTaxonomyDb,
## mapGenomeBuilds.R
mapGenomeBuilds,
genomeBuilds,
listOrganisms,
## seqlevelsStyle.R:
genomeStyles,
extractSeqlevels,
extractSeqlevelsByGroup,
mapSeqlevels,
seqlevelsInGroup,
## seqlevels-wrappers.R:
keepSeqlevels, dropSeqlevels, renameSeqlevels,
standardChromosomes, keepStandardChromosomes
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 generics defined in GenomeInfoDb + export corresponding methods
###
export(
seqlevelsStyle, "seqlevelsStyle<-"
)
### Exactly the same list as above.
exportMethods(
seqlevelsStyle, "seqlevelsStyle<-"
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### TEMPORARY HACK: Re-export stuff that used to be defined here in
### GenomeInfoDb but has moved to the Seqinfo package in BioC 3.22.
### This avoids breaking packages that still **explicitly** import
### this stuff from GenomeInfoDb.
### TODO: Fix these packages and get rid of this.
export(
orderSeqlevels, rankSeqlevels,
Seqinfo, seqinfo, "seqinfo<-",
seqnames, "seqnames<-",
seqlevels, "seqlevels<-",
seqlengths, "seqlengths<-",
isCircular, "isCircular<-",
genome, "genome<-",
sortSeqlevels, seqlevelsInUse, seqlevels0,
## Note that the SNPlocs packages currently import the GenomeDescription()
## constructor function from GenomeInfoDb, so they need to be modified
## to import it from the Seqinfo package before we can get rid of the
## re-exports below.
GenomeDescription,
commonName, provider, providerVersion,
releaseDate, bsgenomeName
)