forked from LebeerLab/tidytacos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tidytacos.R
29 lines (29 loc) · 1.03 KB
/
tidytacos.R
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
#' tidytacos: Functions to manipulate and visualize amplicon count data.
#'
#' tidytacos is an R package for the analysis of amplicon count data:
#' abundances of amplicon sequences (either clustered in OTUs or exact variants)
#' in samples. The package builds on the tidyverse created by Hadley Wickham:
#' the data are stored in tidy tables where each row is an observation and each
#' column a variable. In addition, the package supplies a set of "verbs":
#' functions that take a tidytacos object as first argument and also return
#' a tidytacos object. Not all functionality is currently implemented in the
#' form of verbs, but this will soon be remediated.
#'
#' @docType package
#' @name tidytacos
#'
#' @section Author(s):
#' Stijn Wittouck \email{wittouck_stijn@@hotmail.com}
#'
#' @import ggplot2
#' @import tidyr
#' @import dplyr
#' @import stringr
#' @import vegan
#' @importFrom tibble tibble
globalVariables(c(
"sample_id", "samples",
"taxon_id", "taxa", "taxon", "taxon_name_color",
"count", "rel_abundance", "presence"
))
NULL