Displaying 1 result from an estimated 1 matches for "_corr".
Did you mean:
xcorr
2005 Nov 03
1
Error message: " The following object(s) are masked"
...able("Diversity_info.txt", header=T, sep="\t",
row.names=NULL)
attach(diversityinfo)
diversitynr=nrow(diversityinfo)
diversitytemp <- matrix(0,nrow=diversitynr,ncol=1)
for(j in 1:length(x))
{
diversitym=read.table(paste(paste("Div-Chr",x[j],
sep=""),"_corr.txt",sep=""), header=T, sep="\t", row.names=NULL)
attach(diversitym)
diversitytemp <- cbind(diversitytemp,diversitym)
print(paste(paste("Diversity-Chrom",x[j], sep=""),".txt",sep=""))
print(dim(diversitytemp))
}
I am essentially t...