Displaying 1 result from an estimated 1 matches for "mastert".
Did you mean:
master
2011 Mar 21
3
appending collums in for loop
...4
5 5
After going trough the loop three times:
Array 1 Array 2 Array 3
1 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<...