a b/R/utils-pipe.R
1
#' Pipe operator
2
#'
3
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details.
4
#'
5
#' @name %>%
6
#' @rdname pipe
7
#' @keywords internal
8
#' @export
9
#' @importFrom magrittr %>%
10
#' @usage lhs \%>\% rhs
11
NULL
12
13
14
.attach_this <- function() { # nocov start
15
  if (!"UCSCXenaTools" %in% (.packages())) {
16
    attachNamespace("UCSCXenaTools")
17
  } # nocov end
18
}