Displaying 1 result from an estimated 1 matches for "gomat2".
2006 Jan 20
4
read.table with ":" in column names (PR#8511)
..."
> rownames(gomat)[1]
[1] "GO:0000002"
Which means that ":" is transformed into a "." !! This seems like Excel when it
is trying to guess what I am really ment (and turning 1/1/1 into 1-1-2001).
Furthermore, I found the following quite strange as well:
> gomat2<-read.delim2("test.txt",header=FALSE)
> gomat2[1,1:2]
V1 V2
1 GO:0000051 GO:0000280
> as.character(gomat2[1,1:2])
[1] "8" "2"
> as.character(gomat2[1,1])
[1] "GO:0000051"
I have found a way to work around it, but I am wandering...