-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
32 lines (30 loc) · 1.03 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
# Exports for chem16S package
export(
"read_RDP",
"map_taxa",
"get_metrics",
"get_metadata",
"plot_metrics",
# Integration with phyloseq 20230608
"ps_taxacounts", "ps_metrics", "plot_ps_metrics",
# 20230617
"plot_ps_metrics2",
# 20230704
"chemlab",
# 20241119
"get_metric_byrank"
)
importFrom("stats", "aggregate", "na.omit")
importFrom("utils", "read.csv", "read.table", "tail", "modifyList")
importFrom("grDevices", "chull", "col2rgb", "rgb")
importFrom("graphics", "box", "lines", "par", "polygon")
# calc_metrics() moved to canprot 20240302
importFrom("canprot", "calc_metrics", "cplab")
# Integration with phyloseq 20230608
# Moved phyloseq to Suggests 20230619
# importFrom("phyloseq", "tax_table", "taxa_sums", "otu_table", "taxa_are_rows", "sample_data", "sample_names")
importFrom("plyr", "is.discrete")
importFrom("ggplot2", "aes", "ggplot", "geom_point", "theme", "element_text", "xlab", "ylab",
"facet_wrap", "ggtitle", "labeller", "label_parsed")
importFrom("rlang", ".data")
importFrom("reshape2", "melt")