Package fork.lib.bio.seq.align

Examples of fork.lib.bio.seq.align.PWM


                tab.appendEmptyColumn(col);
            }
            tab.setValueAt(v, row, col);
        }
    }
    PWM mot=new PWM(tab);
    return new PWMEntry(tit, mot);
}
View Full Code Here


    PWMEntry en;
   
   
    while( (en=zz.nextEntry())!=null ){
        String nm= en.tit;
        PWM mot= en.pwm;
       
        FastaReader fr= new FastaReader(new File(dir+"/anno/genomes/sacCer1/sacCer1.fa"));
        MotifToLandscape ml= new MotifToLandscape(fr, mot);
       
        System.out.println(nm+"  ");
View Full Code Here

    ZhuToLandscape zz= new ZhuToLandscape(tf);
    PWMEntry en;
    int ind=0;
    while((en=zz.nextEntry())!=null){
        String tit= en.tit;
        PWM mot= en.pwm;
        System.out.println("add: "+ tit);
       
        zg.addTF(tit, mot);
        ind++;
        //if(ind>5){break;}
View Full Code Here

                }
                tab.setValueAt(v, row, col);
            }
        }
        FastaReader fr= new FastaReader(new File(dir+"/anno/genomes/sacCer1/sacCer1.fa"));
        PWM mot= new PWM(tab);
        MotifToLandscape ml= new MotifToLandscape(fr, mot);

        System.out.println(nm+"  ");
       
        File of= new File(od+"/"+nm+".wig");
View Full Code Here

TOP

Related Classes of fork.lib.bio.seq.align.PWM

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.