Skip to content

Commit f967998

Browse files
dicknetherlandsandreasprlic
authored andcommitted
Change to wiki page
1 parent be6512f commit f967998

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

_wikis/BioJava:GetStarted.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,32 +38,48 @@ due to limited space. The actual commands should be on a single line:
3838

3939
### UNIX Bourne-type shells (the default with most Linux distributions and MacOS 10.3)
4040

41-
`export CLASSPATH=/home/thomas/biojava.jar:/home/thomas/bytecode.jar:`
41+
`export CLASSPATH=/home/thomas/biojava-live.jar:/home/thomas/bytecode.jar:`
4242
`                        /home/thomas/commons-cli.jar:`
4343
`                        /home/thomas/commons-collections-2.1.jar:`
4444
`                        /home/thomas/commons-dbcp-1.1.jar:`
4545
`                        /home/thomas/commons-pool-1.1.jar:.`
4646

47+
In some distributions of Biojava, you need to specify biojava.jar
48+
instead of biojava-live.jar in the above. We are working on resolving
49+
this.
50+
4751
### UNIX C-type shell (for example: versions of Mac OS X pre-10.3)
4852

49-
`setenv CLASSPATH /home/thomas/biojava.jar:/home/thomas/bytecode.jar:`
53+
`setenv CLASSPATH /home/thomas/biojava-live.jar:/home/thomas/bytecode.jar:`
5054
`                        /home/thomas/commons-cli.jar:`
5155
`                        /home/thomas/commons-collections-2.1.jar:`
5256
`                        /home/thomas/commons-dbcp-1.1.jar:`
5357
`                        /home/thomas/commons-pool-1.1.jar:.`
5458

59+
In some distributions of Biojava, you need to specify biojava.jar
60+
instead of biojava-live.jar in the above. We are working on resolving
61+
this.
62+
5563
### Windows from command line
5664

57-
`set CLASSPATH C:\biojava.jar;C:\bytecode.jar;C:\commons-cli.jar;`
65+
`set CLASSPATH C:\biojava-live.jar;C:\bytecode.jar;C:\commons-cli.jar;`
5866
`                        C:\commons-collections-2.1.jar;C:\commons-dbcp-1.1.jar;`
5967
`                        C:\commons-dbcp-1.1.jar;.`
6068

69+
In some distributions of Biojava, you need to specify biojava.jar
70+
instead of biojava-live.jar in the above. We are working on resolving
71+
this.
72+
6173
### Windows autoexec.bat files
6274

63-
`set CLASSPATH=C:\biojava.jar;C:\bytecode.jar;C:\commons-cli.jar;`
75+
`set CLASSPATH=C:\biojava-live.jar;C:\bytecode.jar;C:\commons-cli.jar;`
6476
`                        C:\commons-collections-2.1.jar;C:\commons-dbcp-1.1.jar;`
6577
`                        C:\commons-pool-1.1.jar;.`
6678

79+
In some distributions of Biojava, you need to specify biojava.jar
80+
instead of biojava-live.jar in the above. We are working on resolving
81+
this.
82+
6783
It is also possible to "install" JAR files onto your system by copying
6884
them into your Java installation's extensions directory. On most Unix
6985
systems, this is named *${JAVA\_HOME}/jre/lib/ext*. On Mac OS X there is

_wikis/BioJava:GetStarted.mediawiki

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,40 @@ To use BioJava, add the required JAR files to your CLASSPATH environment variabl
1818

1919
=== UNIX Bourne-type shells (the default with most Linux distributions and MacOS 10.3) ===
2020

21-
export CLASSPATH=/home/thomas/biojava.jar:/home/thomas/bytecode.jar:
21+
export CLASSPATH=/home/thomas/biojava-live.jar:/home/thomas/bytecode.jar:
2222
/home/thomas/commons-cli.jar:
2323
/home/thomas/commons-collections-2.1.jar:
2424
/home/thomas/commons-dbcp-1.1.jar:
2525
/home/thomas/commons-pool-1.1.jar:.
2626
27+
In some distributions of Biojava, you need to specify biojava.jar instead of biojava-live.jar in the above. We are working on resolving this.
28+
2729
=== UNIX C-type shell (for example: versions of Mac OS X pre-10.3)===
2830

29-
setenv CLASSPATH /home/thomas/biojava.jar:/home/thomas/bytecode.jar:
31+
setenv CLASSPATH /home/thomas/biojava-live.jar:/home/thomas/bytecode.jar:
3032
/home/thomas/commons-cli.jar:
3133
/home/thomas/commons-collections-2.1.jar:
3234
/home/thomas/commons-dbcp-1.1.jar:
3335
/home/thomas/commons-pool-1.1.jar:.
3436
37+
In some distributions of Biojava, you need to specify biojava.jar instead of biojava-live.jar in the above. We are working on resolving this.
38+
3539
=== Windows from command line ===
3640

37-
set CLASSPATH C:\biojava.jar;C:\bytecode.jar;C:\commons-cli.jar;
41+
set CLASSPATH C:\biojava-live.jar;C:\bytecode.jar;C:\commons-cli.jar;
3842
C:\commons-collections-2.1.jar;C:\commons-dbcp-1.1.jar;
3943
C:\commons-dbcp-1.1.jar;.
4044
45+
In some distributions of Biojava, you need to specify biojava.jar instead of biojava-live.jar in the above. We are working on resolving this.
46+
4147
=== Windows autoexec.bat files ===
4248

43-
set CLASSPATH=C:\biojava.jar;C:\bytecode.jar;C:\commons-cli.jar;
49+
set CLASSPATH=C:\biojava-live.jar;C:\bytecode.jar;C:\commons-cli.jar;
4450
C:\commons-collections-2.1.jar;C:\commons-dbcp-1.1.jar;
4551
C:\commons-pool-1.1.jar;.
4652
53+
In some distributions of Biojava, you need to specify biojava.jar instead of biojava-live.jar in the above. We are working on resolving this.
54+
4755
It is also possible to "install" JAR files onto your system by copying them into your Java installation's extensions directory. On most Unix systems, this is named ''${JAVA_HOME}/jre/lib/ext''. On Mac OS X there is a per-user extensions directory called ''~/Library/Java/Extensions'' (you may have to create this directory yourself). For other platforms, consult your Java vendor.
4856

4957
You can now compile and run BioJava programs using the ''javac'' and ''java'' commands. You might like to look at the [[BioJava:Tutorial|tutorial]], [http://www.biojava.org/docs/api15b/index.html API documentation] and the [[BioJava:Cookbook |BioJava in anger]] section . Finally, you can learn a lot about BioJava by trying the demo programs included in the source distribution (see below).

0 commit comments

Comments
 (0)