Zhengdeng Lei, PhD

Zhengdeng Lei, PhD

2009 - Present Research Fellow at Duke-NUS, Singapore
2007 - 2009 High Throughput Computational Analyst, Memorial Sloan-Kettering Cancer Center, New York
2003 - 2007 PhD, Bioinformatics, University of Illinois at Chicago

Tuesday, June 5, 2012

Normalization before NTP

Before NTP, is it better to do standardization on gene(row) then on array(column) to avoid population bias.
Or may median polish (an iterative method)?

ANSWER: It is NOT GOOD to do standardization on gene(row) then on array(column) to avoid population bias.


################################################
# standardization by row and column, respetively
#By row (gene)
std.data.by.row <- t(scale(t(data.filtered), scale=T))
#By column (array)
std.data <- scale(std.data.by.row, scale=T)




No comments:

Post a Comment