2

I ran a perl script in biotoolbox package.(http://code.google.com/p/biotoolbox/) but got the error message related with jarfile.

$./bar2wig.pl

 This program will convert bar files to a wig file
 Usage:
 bar2wig.pl [--options...] <filename>

  Options:
  --in <filename> or <directory>
  --out <filename> 

$  ./bar2wig.pl --in  /Users/biotoolbox/scripts/ --out example

This program will convert bar files to a wig file
checking input file(s)....
converting to gr files...
Unable to access jarfile /usr/local/USeq/Apps/Bar2Gr
writing wig file...
cleaning up temp files... done

i am not sure what to do for the error: unable to access jarfile . it looks like java related error, although this script is perl.

any comments for this?

ronaldkelley
  • 131
  • 1
  • 3
  • 9
  • It is very likely that the application in turn might be using a java JAR file to get the job done. Did you follow the whole set up steps outlined at http://code.google.com/p/biotoolbox/wiki/BioToolBoxSetUp – ring bearer Mar 19 '12 at 16:57

1 Answers1

2

Yes, obviously it couldn't find the jarfile. Read the Wiki entry on jar, but suffice to say it's just a portable package of java files.

You're going to need to download that jar file and define where it's located within the configuration file biotoolbox.cfg

joslinm
  • 7,845
  • 6
  • 49
  • 72