-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNAMESPACE
More file actions
executable file
·117 lines (113 loc) · 3.12 KB
/
NAMESPACE
File metadata and controls
executable file
·117 lines (113 loc) · 3.12 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
export(GIMP_app)
export(ICRs_heatmap)
export(calculate_detection_pvalues)
export(check_minfi_functions)
export(create_bedmeth)
export(create_sample_sheet_template)
export(iDMPs)
export(make_ICRs)
export(make_cpgs)
export(plot_cpgs_coverage)
export(plot_line_ICR)
export(preview_idat_zip)
export(read_idat_zip)
# New GEO-related exports
export(validate_geo_dataset)
export(process_geo_dataset)
export(diagnose_geo_dataset)
export(get_geo_phenotype_data)
export(process_geo_with_mappings)
import(BiocManager)
import(shiny)
import(BiocParallel)
import(R.utils)
import(dplyr)
import(tidyr)
import(tibble)
importFrom(DT, datatable)
importFrom(limma, lmFit)
importFrom(limma, eBayes)
importFrom(limma, topTable)
import(shinydashboard)
importFrom(dplyr, full_join)
importFrom(tibble, rownames_to_column)
importFrom(tibble, column_to_rownames)
importFrom(dplyr, summarise_all)
importFrom(dplyr, across)
importFrom(dplyr, summarize)
importFrom(dplyr, n)
importFrom(tidyr, replace_na)
importFrom(tidyr, pivot_longer)
importFrom(ggplot2, ggplot)
importFrom(ggplot2, aes)
importFrom(ggplot2, geom_bar)
importFrom(ggplot2, geom_line)
importFrom(ggplot2, geom_point)
importFrom(ggplot2, geom_rug)
importFrom(ggplot2, geom_vline)
importFrom(ggplot2, position_dodge)
importFrom(ggplot2, labs)
importFrom(ggplot2, theme)
importFrom(ggplot2, theme_bw)
importFrom(ggplot2, theme_minimal)
importFrom(ggplot2, element_text)
importFrom(ggplot2, element_line)
importFrom(ggplot2, scale_color_manual)
importFrom(ggplot2, scale_y_continuous)
importFrom(ggplot2, coord_flip)
importFrom(ggplot2, ylim)
import(valr)
import(readr)
import(viridisLite)
import(ggplotify)
import(plotly)
import(doParallel)
import(IlluminaHumanMethylation450kanno.ilmn12.hg19)
import(IlluminaHumanMethylationEPICanno.ilm10b4.hg19)
import(IlluminaHumanMethylationEPICv2anno.20a1.hg38)
import(IlluminaHumanMethylation450kmanifest)
import(IlluminaHumanMethylationEPICmanifest)
import(IlluminaHumanMethylationEPICv2manifest)
import(minfi)
import(pheatmap)
# GEO-related imports
importFrom(GEOquery, getGEO)
importFrom(GEOquery, getGEOSuppFiles)
importFrom(GEOquery, GSMList)
importFrom(GEOquery, Meta)
importFrom(Biobase, pData)
# Existing imports
importFrom(minfi, read.metharray.exp)
importFrom(minfi, getBeta)
importFrom(minfi, preprocessQuantile)
importFrom(minfi, preprocessSWAN)
importFrom(minfi, preprocessFunnorm)
importFrom(minfi, preprocessNoob)
importFrom(minfi, getGreen)
importFrom(minfi, getRed)
importFrom(minfi, getProbeInfo)
importFrom(utils, unzip)
importFrom(utils, read.csv)
importFrom(utils, untar)
importFrom(utils, zip)
importFrom(utils, data)
importFrom(utils, head)
importFrom(utils, installed.packages)
importFrom(utils, packageVersion)
importFrom(utils, write.csv)
importFrom(stats, complete.cases)
importFrom(stats, median)
importFrom(stats, quantile)
importFrom(stats, sd)
importFrom(stats, end)
importFrom(stats, model.matrix)
importFrom(stats, na.omit)
importFrom(stats, relevel)
importFrom(stats, reorder)
importFrom(stats, setNames)
importFrom(stats, start)
importFrom(stats, var)
importFrom(grDevices, colorRampPalette)
importFrom(tools, file_ext)
importFrom(readxl, read_excel)
importFrom(parallel, detectCores)