Hi,
Im sorry if this has been asked before. I added the .jar files to my $CLASSPATH
under linux and I still cant compile my code; it doesnt find the classes. The
path syntax is correct and the files are properly downloaded.
Any ideas?
Thank you.
For advice on setting your classpath for biojava take a look at
http://www.biojava.org/started.html
Try typing echo $CLASSPATH to make sure your classpath is actually getting
set.
If everything looks ok and it still won't compile then send an email to
the list with your javac error statement.
Sounds like you might have done this:
set CLASSPATH=/path/to/biojava.jar
javac myprogram.java
java myprogram
What you need to do is this:
set CLASSPATH=/path/to/biojava.jar
javac -cp $CLASSPATH myprogram.java
java -cp $CLASSPATH myprogram
Als