-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathNAMESPACE
46 lines (41 loc) · 1.01 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(qrqc, .registration=TRUE)
importClassesFrom(methods, character, data.frame, integer, list,
logical, numeric)
importMethodsFrom(Biostrings, quality)
importMethodsFrom(methods, show)
import(biovizBase)
import(ggplot2)
import(reshape)
importFrom(graphics, abline, axis, layout, lines, par, plot.new,
plot.window, points, title)
importFrom(methods, new)
importFrom(plyr, count)
importFrom(stats, approxfun, lowess, weighted.mean)
# common between ggplot2 rewrite and older version
export(readSeqFile)
export(makeReport)
exportClassPattern("^.*$")
# new plotting functions
export(getBase)
export(getKmer)
export(getBaseProp)
export(getQual)
export(getGC)
export(getMCQual)
export(getSeqlen)
export(basePlot)
export(qualPlot)
export(seqlenPlot)
export(gcPlot)
export(geom_qlinerange)
export(list2df)
export(scale_color_iupac)
export(scale_color_dna)
export(kmerKLPlot)
export(kmerEntropyPlot)
export(calcKL)
# deprecated
export(plotQuals)
export(plotBases)
export(plotSeqLengths)
export(plotGC)