Open drisso opened 7 years ago
Because the default value of zero in scone is zero = c("none", "preadjust", "postadjust", "strong"), the following line throws a warning: https://github.com/YosefLab/scone/blob/master/R/scone_main.R#L177
zero
scone
zero = c("none", "preadjust", "postadjust", "strong")
the condition has length > 1 and only the first element will be used
Adding the following line before L177 should fix it.
zero <- match.arg(zero)
Because the default value of
zero
inscone
iszero = c("none", "preadjust", "postadjust", "strong")
, the following line throws a warning: https://github.com/YosefLab/scone/blob/master/R/scone_main.R#L177Adding the following line before L177 should fix it.