Skip to content

Commit 1a9d242

Browse files
committed
First release,.
1 parent a23bc55 commit 1a9d242

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.panda</groupId>
88
<artifactId>causal-priors-extractor</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010

1111
<repositories>
1212
<repository>

src/main/java/org/panda/cpe/Extractor.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,16 @@ public class Extractor
3232
static TermCounter tc = new TermCounter();
3333
public static void main(String[] args) throws IOException
3434
{
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+
3541
if (args.length < 3)
3642
{
3743
System.out.println("\nUsage: java -jar cpe.java <biopax-file> <blacklist-file> <output-sif-filename>");
44+
System.out.println("\nTo see the version: java -jar cpe.java -v");
3845
return;
3946
}
4047

0 commit comments

Comments
 (0)