Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.42 KB | None | 0 0
  1. public class Main {
  2.  
  3.     /**
  4.      * @param args
  5.      */
  6.     public static void main(String[] args) {
  7.         // DNA dna = new DNA("file/seqNC_011812.txt",
  8.         // "file/seqNC_011812-gene.txt");
  9.         // System.out.println(dna.getSequence());
  10.         // System.out.println(dna.getGenes());
  11.         // HMM hmm = new HMM();
  12.         // hmm.fwdBwd(dna);
  13.         // hmm.train(dna);
  14.         DNA prediction = new DNA("file/a.txt");
  15.         HMM hmm = new HMM(true);
  16.         hmm.prediction(prediction);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement