Package com.martiansoftware.jsap.stringparsers

Examples of com.martiansoftware.jsap.stringparsers.FileStringParser


 
  public static void realMain (String[] args) throws JSAPException, FileNotFoundException, IOException {
    long startTime = System.currentTimeMillis();

    // build a parser for the input file, with the right parameters
    FileStringParser myFileParser = FileStringParser.getParser();
    myFileParser.setMustBeFile(true);
    myFileParser.setMustExist(true);
   
    // build the jsap object
    SimpleJSAP jsap = new SimpleJSAP(
              "spectralHMM",
              "Analyze temporal data using a spectral HMM method.",
View Full Code Here

TOP

Related Classes of com.martiansoftware.jsap.stringparsers.FileStringParser

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.