Examples of MotifToLandscape


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

    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+"  ");
        File of= new File(od+"/"+nm+".wig");
        ml.writeToFile(of, nm);
        fr.close();
       
           
        /*
        String s= "AGATTATTTAATAATGGGAC";
View Full Code Here

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

                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");
        ml.writeToFile(of, nm);
        fr.close();
       
        //System.exit(1);
    }
   
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.