I have LD data, sometimes raw output file from PLINK as below (notice spaces - used to make the output pretty, notice leading and trailing spaces, too):
write.table(read.table(text="
CHR_A BP_A SNP_A CHR_B BP_B SNP_B R2
1 154834183 rs1218582 1 154794318 rs9970364 0.0929391
1 154834183 rs1218582 1 154795033 rs56744813 0.10075
1 154834183 rs1218582 1 154797272 rs16836414 0.106455
1 154834183 rs1218582 1 154798550 rs200576863 0.0916789
1 154834183 rs1218582 1 154802379 rs11264270 0.176911 ",sep="x"),
"Type1.txt",col.names=FALSE,row.names=FALSE,quote=FALSE)
Or nicely tab separated file:
write.table(read.table(text="
CHR_A BP_A SNP_A CHR_B BP_B SNP_B R2
1 154834183 rs1218582 1 154794318 rs9970364 0.0929391
1 154834183 rs1218582 1 154795033 rs56744813 0.10075
1 154834183 rs1218582 1 154797272 rs16836414 0.106455
1 154834183 rs1218582 1 154798550 rs200576863 0.0916789
1 154834183 rs1218582 1 154802379 rs11264270 0.176911", sep=" "),
"Type2.txt",col.names=FALSE,row.names=FALSE,quote=FALSE,sep="\t")
read.csv works for both types of data:
read.csv("Type1.txt", sep="")
read.csv("Type2.txt", sep="")
fread works only for Type2:
fread("Type1.txt")
fread("Type2.txt")
Files are big, in millions of rows, hence can't use read.csv
option. Is there a way to make fread
guess better? Other package/function suggestions?
I could use readLines
then guess the type of file, or tidy up the file using system call then fread
, but this will add overhead I am trying to avoid.
Edit: SessionInfo
R version 3.2.0 (2015-04-16)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
Fixed on the devel version, v1.9.5. Either use devel (/upgrade) or wait a while for it to hit CRAN as v1.9.6:
fread()
has gainedstrip.white
(default=TRUE
) amidst other arguments / bug fixes. Please seeREADME
file on project page for more info.Types are recognised correctly as well.