R/GMPR.R

Defines functions GMPR

Documented in GMPR

GMPR <- function(OTUmatrix, min_ct=2, intersect_no=4){
  #datatype check
	
  if(!(class(OTUmatrix)[1] %in% c("data.frame","matrix")))
    stop("Unknown datatype of object \"OTUmatrix\".")
   OTUmatrix  <- t(OTUmatrix)
  rownames(OTUmatrix)->SampleName
  if(ncol(OTUmatrix)<nrow(OTUmatrix))
    warning("Sample size is larger than OTU number. Check if samples are arranged in columns.")
  if(length(OTUmatrix[OTUmatrix<1 & OTUmatrix>0])>=0.1*ncol(OTUmatrix)*nrow(OTUmatrix))
    stop("More than 10% values are fractional, please check.")
  apply(OTUmatrix, MARGIN = 2, as.integer)->OTUmatrix


  gmpr(OTUmatrix,min_ct,intersect_no)->size.factor
  names(size.factor)<-SampleName
  size.factor[abs(size.factor-1)<1e-10]<-NA
  size.factor
}

Try the GUniFrac package in your browser

Any scripts or data that you put into this service are public.

GUniFrac documentation built on Sept. 14, 2023, 1:07 a.m.