Last change
on this file since 2496 was
2496,
checked in by Nicklas Nordborg, 9 years ago
|
Adding svn properties
|
-
Property svn:eol-style set to
LF
-
Property svn:executable set to
*
-
Property svn:keywords set to
Id
|
File size:
316 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | # $Id $ |
---|
4 | |
---|
5 | if [ -z "$TrimmomaticJAR" ]; then |
---|
6 | TrimmomaticJAR=/usr/local/packages/trimmomatic/0.32/trimmomatic-0.32.jar |
---|
7 | fi |
---|
8 | |
---|
9 | if [ -z "$TrimmomaticMemory" ]; then |
---|
10 | TrimmomaticMemory=16g |
---|
11 | fi |
---|
12 | |
---|
13 | NumThreads=`nproc` |
---|
14 | |
---|
15 | cmd=$1 |
---|
16 | shift |
---|
17 | |
---|
18 | java -Xmx${TrimmomaticMemory} -jar ${TrimmomaticJAR} ${cmd} -threads ${NumThreads} $@ |
---|
Note: See
TracBrowser
for help on using the repository browser.