Examples of unlog()


Examples of fork.lib.bio.anno.genomic.LandscapeTransformer.unlog()

    File f= new File(d+"/h3k4ac_guillemette2011.wig");
   
    LandscapeBuilder lb= new BedGraphReader(f).getLandscapeBuilder();
   
    LandscapeTransformer lt= new LandscapeTransformer(lb);
    lt.unlog(2);
   
    File of= new File(d+"/unlog2_"+ f.getName());
    new BedGraphExporter(lb).writeToFile(of);
}
   
View Full Code Here

Examples of fork.lib.bio.anno.genomic.LandscapeTransformer.unlog()

        File f= fs[i];
        if(FileName.getExt(f).equals("wig") && !f.getName().contains("unlog")){
            LandscapeBuilder lb= new BedGraphReader(f).getLandscapeBuilder();

            LandscapeTransformer lt= new LandscapeTransformer(lb);
            lt.unlog();
           
            File of= new File(d+"/unlog_"+FileName.getBaseName(f)+".wig");
            new BedGraphExporter(lb).writeToFile(of);;
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.