I have seen in several cases that while read.table() is not able to read a tab delimited file (for example the annotation table of a microarray) returning the follo
Don't use read.table to read tab-delimited files, use read.delim. (It is just a thin wrapper around read.table but it sets the options to appropriate values)