Package fork.lib.bio.anno.genomic

Examples of fork.lib.bio.anno.genomic.BedGraphExporter.param()


        }
    }
   
   
    BedGraphExporter be =new BedGraphExporter(lb);
    be.param().tit= FileName.getBaseName(out);
    be.writeToFile(out);
}
   
   
}
View Full Code Here


   
    Distribution dnz= lb.getDistributionNonZero();
    double nf= dnz.sum()/ 100000000;
    new LandscapeTransformer(lb).divideBy(nf);
    BedGraphExporter be= new BedGraphExporter(lb);
    be.param().tit= tit;
    be.writeToFile(f);
}
   
   
   
View Full Code Here

}

protected void write(ArrayList<String> ids, ArrayList<Double> vs, File f,String std, String tag)throws Exception{
    ProbeMapperStrand pp= new ProbeMapperStrand(anno, probe, std);
    BedGraphExporter be= new BedGraphExporter(pp.toLandscapeBuilder(ids, vs));
    be.param().tit= tag+"_"+std;
    be.writeToFile(f);
}


View Full Code Here

        }
    }
   
   
    BedGraphExporter be =new BedGraphExporter(lb);
    be.param().tit= FileName.getBaseName(out);
    be.writeToFile(out);
}
   
   
}
View Full Code Here

            }
        }
    }
   
    BedGraphExporter be= new BedGraphExporter(lbout);
    be.param().tit= FileName.getBaseName(out);
    be.writeToFile(out);
}
   
   
View Full Code Here

                    }
                }
            }
        }
    };
    be.param().tit= tit;
    be.writeToFile(of);
}
   

public static void toRatio(File f, File ref, File out) throws Exception{
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.