Skip to content

subsetting the gene list

2 messages · Abhilash Venu, Adaikalavan Ramasamy

#
Have you tried reading some of the material from the BioConductor 
workshop http://bioconductor.org/workshops/ ?

Here is a simplistic way of proceeding:

  ## Calculate pvalues from t-test
  p <- apply( mat, function(x) t.test( x ~ cl )$p.value )

  ## Subset
  mat.sub <- mat[ p, ]

  ## Cluster
  heatmap(m)

Regards, Adai
Abhilash Venu wrote: