File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/main/java/org/panda/cpe Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.panda</groupId >
8
8
<artifactId >causal-priors-extractor</artifactId >
9
- <version >1.0.0-SNAPSHOT </version >
9
+ <version >1.0.0</version >
10
10
11
11
<repositories >
12
12
<repository >
Original file line number Diff line number Diff line change @@ -32,9 +32,16 @@ public class Extractor
32
32
static TermCounter tc = new TermCounter ();
33
33
public static void main (String [] args ) throws IOException
34
34
{
35
+ if (args .length > 0 && args [0 ].equals ("-v" ))
36
+ {
37
+ System .out .println ("Causal Priors Extractor Version 1.0.0" );
38
+ return ;
39
+ }
40
+
35
41
if (args .length < 3 )
36
42
{
37
43
System .out .println ("\n Usage: java -jar cpe.java <biopax-file> <blacklist-file> <output-sif-filename>" );
44
+ System .out .println ("\n To see the version: java -jar cpe.java -v" );
38
45
return ;
39
46
}
40
47
You can’t perform that action at this time.
0 commit comments