Package fork.lib.bio.anno.genomic

Examples of fork.lib.bio.anno.genomic.BedGraphBuffer


   
   
   
public void writeToFile(File out)throws Exception{
    out.getParentFile().mkdirs();
    LandscapeBuffer lb= new BedGraphBuffer(f);
    LandscapeComparatorBuffer lc = new LandscapeComparatorBuffer(lb, lbref) {
            @Override
            public double newValue(double v, double refv) {
                if(refv<0.01){
                    refv=0.01;
View Full Code Here


   
   
    File datf= new File(dir+"/data/chip-seq/norm/norm_"+samp+".wig");
   

    LandscapeBuffer lb= new BedGraphBuffer(datf);
    GenomicRegionsBuilder gb= new BedReader(regf).getGenomicRegionsBuilder();

   
   
    ScanIntra si = new ScanIntra(gb, lb);
View Full Code Here

TOP

Related Classes of fork.lib.bio.anno.genomic.BedGraphBuffer

Copyright © 2018 www.massapicom. 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.