Package data.cerevisiae.test.lineup

Examples of data.cerevisiae.test.lineup.LineupSide


   
    for( int i=0; i<fs.size(); i++ ){
        File f= fs.get(i);
        if(FileName.getExt(f).equals("wig")){
            LandscapeBuilder lb= new BedGraphReader(f).getLandscapeBuilder();
            LineupSide ls= new LineupSide(gb, lb);
            File of= new File(od+"/"+FileName.getBaseName(f)+".txt");
            ls.writeToFile(of);
        }
    }


View Full Code Here

TOP

Related Classes of data.cerevisiae.test.lineup.LineupSide

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.