Displaying 1 result from an estimated 1 matches for "_snp_ids".
Did you mean:
snp_ids
2011 Mar 21
3
appending collums in for loop
...1 1
2 2 2
3 3 3
4 4 4
5 5 5
This is my code:
setwd("J:/Stage/Datasets2/Datasets/outData")
masterTable<-read.table("AR1000900A_N_241110_(Mapping250K_Nsp)_2,Mapping250K_Nsp,CNprobes.tab
_SNP_IDs.xls",sep="\t", dec=",", fill=T, header=T)
masterTable<-data.frame(masterTable)
fileNames<-list.files(getwd(), pattern='_0,5 -0,51.xls')
regionMatchABCDE<-data.frame()
for(i in 1:5) {
fileName <- fileNames[i]
newFile <- file.path(getwd(), pas...