Package fork.lib.bio.anno.genomic

Examples of fork.lib.bio.anno.genomic.LandscapeComparatorBuffer.writeToFile()


            public double newValue(double v, double refv) {
                return new Double( (double)Math.round( (v- refv) * 1000)/1000  );
            }
        };
    String tag= FileName.getBaseName(f);
    lc.writeToFile(out, "diff"+tag);
}


public static void main(String[] args) throws Exception { //debug
    File dir= Dirs.getFile("dir");
View Full Code Here


                return new Double( (double)Math.round(v/refv * 1000)/1000  );
            }
        };
    String tag= FileName.getBaseName(f)+"_lee2007";
    System.out.println("write ratio to: "+out);
    lc.writeToFile(out, "ratio_"+tag);
}
   
   
   
   
View Full Code Here

                    ret=0;
                }
                return ret;
            }
        };
    lc.writeToFile(f, tit);
}


public static void normalise(LandscapeBuilder lb, File of, String tit, double seqDepth) throws Exception{
    new LandscapeTransformer(lb).selectLength(100, Double.POSITIVE_INFINITY);
View Full Code Here

                return new Double( (double)Math.round(v/refv * 1000)/1000  );
            }
        };
    String tag= FileName.getBaseName(f);
    System.out.println("write ratio to: "+out);
    lc.writeToFile(out, "ratio"+tag);
}



   
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.