public static void normalise(LandscapeBuilder lb, File f, String tit) throws Exception{
Distribution d= lb.getDistribution();
double fac= (double)Math.ceil( d.median() * 1.75);
new LandscapeTransformer(lb).subtract(fac);
System.out.println("subfac: "+fac);
Distribution dnz= lb.getDistributionNonZero();
double nf= dnz.sum()/ 100000000;
new LandscapeTransformer(lb).divideBy(nf);
BedGraphExporter be= new BedGraphExporter(lb);
be.param().tit= tit;
be.writeToFile(f);
}