source: other/pipeline/trunk/trimmomatic @ 2496

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
5if [ -z "$TrimmomaticJAR" ]; then
6  TrimmomaticJAR=/usr/local/packages/trimmomatic/0.32/trimmomatic-0.32.jar
7fi
8
9if [ -z "$TrimmomaticMemory" ]; then
10  TrimmomaticMemory=16g
11fi
12
13NumThreads=`nproc`
14
15cmd=$1
16shift
17
18java -Xmx${TrimmomaticMemory} -jar ${TrimmomaticJAR} ${cmd} -threads ${NumThreads} $@
Note: See TracBrowser for help on using the repository browser.