Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 4510c039 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- improved help command

parent 5644701c
No related branches found
No related tags found
No related merge requests found
...@@ -450,13 +450,17 @@ public class ExtGroupEval { ...@@ -450,13 +450,17 @@ public class ExtGroupEval {
public void usage() { public void usage() {
System.out.println("usage: ExtGroupEval [options]"); System.out.println("usage: ExtGroupEval [options]");
System.out.println("options are:"); System.out.println("options are:");
System.out.println("\t--format=sepr -r sepr\tSpecifies the extended measures used (symetric/effort-based/precision-oriented/recall-oriented)"); System.out.println("\t--format=sepr -f sepr\tSpecifies the extended measures used (symetric/effort-based/precision-oriented/recall-oriented)");
System.out.println("\t--reference=filename -r filename\tSpecifies the name of the reference alignment file (default: refalign.rdf)"); System.out.println("\t--reference=filename -r filename\tSpecifies the name of the reference alignment file (default: refalign.rdf)");
System.out.println("\t--dominant=algo -s algo\tSpecifies if dominant columns are algorithms or measure"); System.out.println("\t--output=filename -o filename\tSpecifies a file to which the output will go");
// Apparently not implemented
//System.out.println("\t--dominant=algo -s algo\tSpecifies if dominant columns are algorithms or measure");
System.out.println("\t--type=html|xml|tex|ascii -t html|xml|tex|ascii\tSpecifies the output format"); System.out.println("\t--type=html|xml|tex|ascii -t html|xml|tex|ascii\tSpecifies the output format");
System.out.println("\t--list=algo1,...,algon -l algo1,...,algon\tSequence of the filenames to consider"); System.out.println("\t--list=algo1,...,algon -l algo1,...,algon\tSequence of the filenames to consider");
System.out.println("\t--color=color -c color\tSpecifies if the output must color even lines of the output");
System.out.println("\t--debug[=n] -d [n]\t\tReport debug info at level n"); System.out.println("\t--debug[=n] -d [n]\t\tReport debug info at level n");
System.out.println("\t--help -h\t\t\tPrint this message"); System.out.println("\t--help -h\t\t\tPrint this message");
System.err.print("\n"+ExtGroupEval.class.getPackage().getImplementationTitle()+" "+ExtGroupEval.class.getPackage().getImplementationVersion());
System.err.println(" ($Id$)\n"); System.err.println(" ($Id$)\n");
} }
} }
...@@ -160,10 +160,10 @@ public class GenPlot { ...@@ -160,10 +160,10 @@ public class GenPlot {
/* List of filename */ /* List of filename */
fileNames = g.getOptarg(); fileNames = g.getOptarg();
break; break;
case 's' : //case 's' :
/* Step */ /* Step */
fileNames = g.getOptarg(); //fileNames = g.getOptarg();
break; //break;
case 'd' : case 'd' :
/* Debug level */ /* Debug level */
arg = g.getOptarg(); arg = g.getOptarg();
......
...@@ -569,7 +569,7 @@ which the program does... ...@@ -569,7 +569,7 @@ which the program does...
public void usage() { public void usage() {
System.out.println("usage: WGroupEval [options]"); System.out.println("usage: WGroupEval [options]");
System.out.println("options are:"); System.out.println("options are:");
System.out.println("\t--format=prfot -r prfot\tSpecifies the output order (precision/recall/f-measure/overall/time)"); System.out.println("\t--format=prfot -f prfot\tSpecifies the output order (precision/recall/f-measure/overall/time)");
// Apparently not implemented // Apparently not implemented
//System.out.println("\t--sup=algo -s algo\tSpecifies if dominant columns are algorithms or measure"); //System.out.println("\t--sup=algo -s algo\tSpecifies if dominant columns are algorithms or measure");
System.out.println("\t--output=filename -o filename\tSpecifies a file to which the output will go"); System.out.println("\t--output=filename -o filename\tSpecifies a file to which the output will go");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment