R/cnv.R

Defines functions cnv

Documented in cnv

cnv <-
function(x, batches, ...){
  if (missing(batches) | NCOL(x)>1)
    return(cnvDefault(x, ...))
  else {
    if (length(unique(batches))==1)
      return(cnvDefault(x, ...))
    else
      return(cnvBatches(x, batches, ...))
  }
}

Try the CNVassoc package in your browser

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

CNVassoc documentation built on May 30, 2017, 12:50 a.m.