56575859606162
initNameAndDescription("MeapeaM", new String(oldDesc)); } public MeapaeMComposer(String featFN, String outFN) { this(new FeatFile(featFN), new EDLFile(outFN)); }
68697071727374
featFile = featFN; outFile = outFN; if (outFile == null) outFile = new EDLFile(""); }
120121122123124125126127128129
int ind = opt.getOptind(); if (ind > args.length) printUsageAndExit(); featFile = new FeatFile(args[args.length - 1]); outFile = new EDLFile(outFileName); System.out.println("Composing " + outFileName + " from " + args[args.length - 1] + "."); }
85868788899091
this(featFN, outFN, new EuclideanDist()); } public ChromaTopComposer(String featFN, String outFN, ChunkDist cd) { this(new FeatFile(featFN), new EDLFile(outFN), cd); }
96979899100101102103104105106
outFile = outFN; dist = cd; featdim = cd.featdim; if (outFile == null) outFile = new EDLFile(""); try { setup(); }
176177178179180181182183184185186
int ind = opt.getOptind(); if (ind > args.length) printUsageAndExit(); featFile = new FeatFile(args[args.length - 1]); outFile = new EDLFile(outFileName); try { setup(); }
60616263646566
initNameAndDescription("Add Blips", new String(oldDesc)); } public BlipComposer(String featFN, String outFN) { this(new FeatFile(featFN), new EDLFile(outFN), false); }
65666768697071
this(new FeatFile(featFN), new EDLFile(outFN), false); } public BlipComposer(String featFN, String outFN, boolean silentMode) { this(new FeatFile(featFN), new EDLFile(outFN), silentMode); }
84858687888990
outFile = outFN; this.silentMode = silentMode; if (outFile == null) outFile = new EDLFile(""); }
147148149150151152153154155156