-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathNAMESPACE
46 lines (37 loc) · 1.04 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
useDynLib(GoogleGenomics, .registration = TRUE, .fixes = "C_")
## API related imports ##
import(httr)
import(methods)
importFrom(rjson, fromJSON, toJSON)
## Bioc utility functions and S4 constructors ##
import(S4Vectors)
importFrom(Biobase, "sampleNames<-")
importFrom(Biostrings, DNAStringSet, DNAStringSetList)
importFrom(GenomeInfoDb, "seqlevelsStyle<-")
importFrom(GenomicAlignments, GAlignments)
importFrom(GenomicRanges, GRanges)
importFrom(IRanges, IRanges)
importFrom(Rsamtools, bamFlagAsBitMatrix)
importFrom(VariantAnnotation, strand, VRanges)
## Utility imports ##
importFrom(utils, installed.packages)
#### Exports ####
## Authentication ##
export(authenticate)
export(defaultGcloudCredsPath)
## Generic Search ##
export(getSearchPage)
## gRPC ##
export(callGRPCMethod)
export(getRProtoBufDefaultObject)
export(isGRPCAvailable)
## Reads ##
export(getReadsPage)
export(getReads)
export(readsToGAlignments)
## Variants ##
export(getVariantsPage)
export(getVariantCalls)
export(getVariants)
export(variantsToGRanges)
export(variantsToVRanges)