You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by tm...@apache.org on 2014/04/15 21:37:55 UTC

svn commit: r1587705 - /ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java

Author: tmill
Date: Tue Apr 15 19:37:55 2014
New Revision: 1587705

URL: http://svn.apache.org/r1587705
Log:
Made BagOfCUIsGenerator to take command line args.

Modified:
    ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java

Modified: ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java?rev=1587705&r1=1587704&r2=1587705&view=diff
==============================================================================
--- ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java (original)
+++ ctakes/trunk/ctakes-clinical-pipeline/src/main/java/org/apache/ctakes/clinicalpipeline/runtime/BagOfCUIsGenerator.java Tue Apr 15 19:37:55 2014
@@ -46,7 +46,7 @@ public class BagOfCUIsGenerator extends 
 	 * @throws UIMAException 
 	 */
 	public static void main(String[] args) throws UIMAException, IOException {
-		(new BagOfCUIsGenerator("data/input", "data/output")).process();
+		(new BagOfCUIsGenerator(args[0], args[1])).process();
 	}
 
 }