view SMART/DiffExpAnal/DESeqTools/removeNul.R @ 18:94ab73e8a190

Uploaded
author m-zytnicki
date Mon, 29 Apr 2013 03:20:15 -0400
parents
children
line wrap: on
line source

# removeNul
# remove genes with null counts in all samples

# input : counts
# output : counts

# created Feb 7th, 2012
# Marie-Agnes Dillies


removeNul <- function( counts, info = NULL ){

  return( list(counts[rowSums(counts) > 0,], info[rowSums(counts) > 0,]) )
}