}
}
public static void initRows(File f) throws IOException{
ReadTable rt= new ReadTable(f);
String[] rns= rt.getColumn(3);
for(int j=0; j<rns.length ; j++){
String rn= rns[j];
if(!tab.containsRow(rn)){
tab.appendEmptyRow(rn);
}
}
String[][] arr= rt.getTableAsArray();
tab.appendEmptyColumn("pos");
for(int i=0; i<arr.length ; i++){
String[] r= arr[i];
String pos= r[0]+":"+r[1]+"-"+r[2];
tab.setValueAt(pos, r[3], "pos");