Package fork.lib.bio.anno.genomic

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


                gr.setValue(0);
                gbout.add(gr);
            }
        }
    }
    BedExporterParam bep= new BedExporterParam();
    bep.ifExpanded=true;
    BedExporter be= new BedExporter(gbout, bep);
    be.writeToFile(out);
}
View Full Code Here


        }
    }
}

public void writeToFile(File out)throws Exception{
    BedExporterParam par= new BedExporterParam();
    par.ifExpanded=true;
    BedExporter be= new BedExporter(gb, par){
        protected String column6On(GenomicRegion gr)throws Exception{
            Res r= ress.get(gr);
            return r.str+"\t"+f(r.forl)+"\t"+f(r.forh)+"\t"+f(r.revl)+"\t"+f(r.revh);
View Full Code Here

TOP

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

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.