Permalink
Browse files

initial project version

  • Loading branch information...
0 parents commit 238b091649b1286a2e8778bca6d9be94bd55e11a @mdcao committed May 1, 2015
Showing with 22 additions and 0 deletions.
  1. BIN japsa-15.5a.tar.gz
  2. BIN japsa.zip
  3. +22 −0 jsa.np.f5readerGUI.bat
Binary file not shown.
BIN japsa.zip
Binary file not shown.
@@ -0,0 +1,22 @@
+@echo off
+
+rem This batch file serves as a wrapper for several
+rem JSA command line tools.
+
+if not "%JSA_HOME%" == "" goto gotjsaHome
+
+echo JSA requires an environment variable JSA_HOME.
+goto :eof
+
+:gotjsaHome
+
+set JSA_MEM=7000m
+set JSA_LIBS=%JSA_HOME%\lib\japsa\
+set JSA_CP=%JSA_LIBS%\japsa.jar;%JSA_LIBS%\commons-math3-3.0.jar;%JSA_LIBS%\sam-1.84.jar;%JSA_LIBS%\jhdf5.jar;%JSA_LIBS%\jhdfobj.jar;%JSA_LIBS%\htsjdk-1.126.jar;%JSA_LIBS%\jcommon-1.0.23.jar;%JSA_LIBS%\jfreechart-1.0.19.jar
+
+:run
+
+java -Xmx%JSA_MEM% -ea -Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Djava.library.path="%JHDF5_LIB%" -classpath %JSA_CP% japsa.seq.nanopore.NanoporeReaderStream --folder . -output output.fastq -fail --minLength 50 -GUI
+
+:eof
+

0 comments on commit 238b091

Please sign in to comment.