R/msa.R

Defines functions msa

msa <-
function(v)
{
  tmp <- sum(v^2)
  if (tmp==0)tmp <- 1
  return(v/sum(v))
  
}

Try the LMGene package in your browser

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

LMGene documentation built on April 28, 2020, 8:01 p.m.