}
}
String tag= "z"+z+"_ac"+ac;
new BedExporter(gbde).writeToFile(new File(od+"/select-de_"+tag+".bed"));
GenomicRegionsLocator gl= new GenomicRegionsLocator(
gbde,
new BedReader(rf).getGenomicRegionsBuilder()
);
gl.writeToSeparateFiles(
new File(od+"/locate-de_"+tag+"_in.txt"),
new File(od+"/locate-de_"+tag+"_between.txt")
);
new BedExporter(gbac).writeToFile(new File(od+"/select-ac_"+tag+".bed"));
gl= new GenomicRegionsLocator(
gbac,
new BedReader(rf).getGenomicRegionsBuilder()
);
gl.writeToSeparateFiles(
new File(od+"/locate-ac_"+tag+"_in.txt"),
new File(od+"/locate-ac_"+tag+"_between.txt")
);
}
}