-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNAMESPACE
150 lines (138 loc) · 3.54 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
useDynLib(ramwas, .registration = TRUE)
export(
ramwasParameters,
ramwasAnnotateLocations,
isAbsolutePath,
makefullpath,
cachedRDSload,
findBestNpvs,
pvalue2qvalue,
orthonormalizeCovariates,
parameterDump,
parameterPreprocess,
parametersFromFile,
ramwas0createArtificialData,
ramwas1scanBams,
pipelineProcessBam,
ramwas2collectqc,
ramwas3normalizedCoverage,
ramwas4PCA,
ramwas5MWAS,
ramwas6annotateTopFindings,
ramwas7ArunMWASes,
ramwas7BrunElasticNet,
ramwas7CplotByNCpGs,
ramwas7riskScoreCV,
processCommandLine,
qcmean,
qqPlotFast,
qqPlotPrepare,
manPlotPrepare,
manPlotFast,
plotPCvalues,
plotPCvectors,
plotROC,
plotPrediction,
plotCVcors,
rowSumsSq,
colSumsSq,
testPhenotype,
getCpGsetALL,
getCpGsetCG,
getLocations,
getMWAS,
getMWASandLocations,
getMWASrange,
getDataByLocation,
subsetCoverageDirByLocation,
madeBED,
madeBEDrange,
madeBEDgraph,
madeBEDgraphRange,
insilicoFASTQ,
injectSNPsMAF,
mat2cols,
estimateFragmentSizeDistribution,
plotFragmentSizeDistributionEstimate,
ramwasSNPs
)
exportClasses("rwDataClass")
# export(
# .log,
# .showErrors,
# pipelineCoverage1Sample,
# .ramwas3coverageJob,
# .ramwas3transposeFilterJob,
# .ramwas3normalizeJob,
# .set1MLKthread,
# .matchCovmatCovar,
# .getCovariates,
# .file.remove,
# postPCAprocessing,
# .ramwas4PCAjob,
# .testCovariates,
# .ramwas5MWASjob,
# groupSample
# )
importFrom(methods,
setRefClass, new)
importFrom(grDevices,
dev.off, pdf, png)
importFrom(graphics,
abline, legend, lines, par, plot,
points, title, axis, barplot, hist, layout)
importFrom(stats,
complete.cases, pf, pt, qf, qt, optim, rnorm, pnorm,
model.matrix, quantile, median, qlogis, rnbinom,
plogis, qbeta, cor, lm, qchisq, runif, sd)
importFrom(utils,
flush.console, head, tail, memory.limit,
tail.matrix, read.table, write.table)
importFrom(grDevices,
palette)
importFrom(GenomicAlignments,
cigarWidthAlongQuerySpace, cigarWidthAlongReferenceSpace)
importFrom(Rsamtools,
scanBamFlag, ScanBamParam, BamFile,
open.BamFile, scanBam, asBam)
importFrom(parallel,
makeCluster, clusterEvalQ, clusterApplyLB, clusterCall,
stopCluster, detectCores, clusterExport)
importFrom(KernSmooth, locpoly)
importFrom(digest, digest)
#importFrom(glmnet, cv.glmnet)
#importFrom(glmnet, predict)
importFrom(stringr, str_sort)
importFrom(stats, predict)
import(glmnet)
importFrom(biomaRt, useMart, getBM)
importFrom(Biostrings, matchPattern)
importFrom(filematrix,
fm.create, fm.load, fm.open,
fm.create.from.matrix, closeAndDeleteFiles)
importClassesFrom(filematrix, filematrix)
importMethodsFrom(filematrix, close)
importMethodsFrom(filematrix, as.matrix)
importMethodsFrom(BiocGenerics, start)
#import(methods)
S3method(plot, qcHistScore)
S3method(plot, qcEditDist)
S3method(plot, qcLengthMatched)
S3method(plot, qcHistScoreBF)
S3method(plot, qcEditDistBF)
S3method(plot, qcLengthMatchedBF)
S3method(plot, qcIsoDist)
S3method(plot, qcCoverageByDensity)
S3method(qcmean, qcHistScore)
S3method(qcmean, qcEditDist)
S3method(qcmean, qcLengthMatched)
S3method(qcmean, qcHistScoreBF)
S3method(qcmean, qcEditDistBF)
S3method(qcmean, qcLengthMatchedBF)
S3method(qcmean, qcIsoDist)
S3method(qcmean, qcFrwrev)
S3method(qcmean, qcNonCpGreads)
S3method(qcmean, qcCoverageByDensity)
S3method(qcmean, qcChrX)
S3method(qcmean, qcChrY)
S3method(qcmean, NULL)