Skip to content

Commit

Permalink
update findMarkers
Browse files Browse the repository at this point in the history
  • Loading branch information
zhewa committed Jul 16, 2019
1 parent f65a898 commit a5cf804
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ importFrom(gtable,gtable_height)
importFrom(gtable,gtable_width)
importFrom(matrixStats,logSumExp)
importFrom(methods,.hasSlot)
importFrom(methods,hasArg)
importFrom(methods,is)
importFrom(methods,new)
importFrom(pROC,auc)
Expand Down
3 changes: 2 additions & 1 deletion R/findMarkers.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
#' # Plot dendrogram
#' plotDendro(DecTree)
#' @import magrittr
#' @importFrom methods hasArg
#' @export
findMarkers <- function(features,
class,
Expand Down Expand Up @@ -111,7 +112,7 @@ findMarkers <- function(features,
features <- t(features)

# If no detailed cell types are provided
if(!hasArg(cellTypes)){
if(!methods::hasArg(cellTypes)){

print('Building tree...')

Expand Down

0 comments on commit a5cf804

Please sign in to comment.