Package fork.lib.bio.anno.genomic.region

Examples of fork.lib.bio.anno.genomic.region.GenomicRegionsLocator


    for( int i=0; i<ts.length ; i++ ){
    //for( int i=0; i<1 ; i++ ){
        String t= ts[i];
        String tt= tag+"_"+t;
        File f= new File(d+"/select_"+tt+".bed");
        GenomicRegionsLocator gl= new GenomicRegionsLocator(
                new BedReader(f).getGenomicRegionsBuilder(),
                new BedReader(rf).getGenomicRegionsBuilder()
            );
        File out= new File(od+"/location_"+tt+".bed");
        gl.writeToFile(out);
    }
   
   
   
   
View Full Code Here


                }
            }

            String tag= "z"+z+"_ac"+ac;
            new BedExporter(gbde).writeToFile(new File(od+"/select-de_"+tag+".bed"));
            GenomicRegionsLocator gl= new GenomicRegionsLocator(
                        gbde,
                        new BedReader(rf).getGenomicRegionsBuilder()
                    );
            gl.writeToSeparateFiles(
                    new File(od+"/locate-de_"+tag+"_in.txt"),
                    new File(od+"/locate-de_"+tag+"_between.txt")
                    );
           
            new BedExporter(gbac).writeToFile(new File(od+"/select-ac_"+tag+".bed"));
            gl= new GenomicRegionsLocator(
                        gbac,
                        new BedReader(rf).getGenomicRegionsBuilder()
                    );
            gl.writeToSeparateFiles(
                    new File(od+"/locate-ac_"+tag+"_in.txt"),
                    new File(od+"/locate-ac_"+tag+"_between.txt")
                    );
        }
    }
View Full Code Here

TOP

Related Classes of fork.lib.bio.anno.genomic.region.GenomicRegionsLocator

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.