Commit 48607cf1 authored by Korsunskiy's avatar Korsunskiy
Browse files

added dplyr to namespace

parent 05de17cc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ S3method(wilcoxauc,Seurat)
S3method(wilcoxauc,SingleCellExperiment)
S3method(wilcoxauc,default)
S3method(wilcoxauc,seurat)
export("%>%")
export(wilcoxauc)
import(Rcpp)
importClassesFrom(Matrix,TsparseMatrix)
@@ -11,6 +12,7 @@ importClassesFrom(Matrix,dgCMatrix)
importClassesFrom(Matrix,dgTMatrix)
importClassesFrom(Matrix,dgeMatrix)
importFrom(Matrix,Matrix)
importFrom(dplyr,"%>%")
importFrom(dplyr,select)
importFrom(methods,as)
importFrom(methods,is)

man/pipe.Rd

0 → 100644
+19 −0
Original line number Diff line number Diff line
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{\%>\%}
\alias{\%>\%}
\title{Pipe operator}
\usage{
lhs \%>\% rhs
}
\value{
return value of rhs function.
}
\description{
Pipe operator
}
\examples{
x <- 5 \%>\% sum(10)

}
\keyword{internal}