Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/opt/bbmap-39.01-1/summarizecontam.sh @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
1 #!/bin/bash | |
2 | |
3 usage(){ | |
4 echo " | |
5 Written by Brian Bushnell | |
6 Last modified March 19, 2018 | |
7 | |
8 Description: Summarizes monthly contam files into a single file. | |
9 This is for internal JGI use. | |
10 | |
11 Usage: summarizecontam.sh <input files> out=<output file> | |
12 | |
13 Parameters: | |
14 in=<file,file> Input contam summary files, comma-delimited. | |
15 Alternately, file arguments (from a * expansion) will be | |
16 considered input files. | |
17 out=<file> Output. | |
18 tree=auto Taxtree file location (optional). | |
19 overwrite=t (ow) Set to false to force the program to abort rather than | |
20 overwrite an existing file. | |
21 | |
22 Filter Parameters (passing all required to pass): | |
23 minreads=0 Ignore records with fewer reads than this. | |
24 minsequnits=0 Ignore records with fewer seq units than this. | |
25 | |
26 Java Parameters: | |
27 -Xmx This will set Java's memory usage, overriding autodetection. | |
28 -Xmx20g will specify 20 gigs of RAM, and -Xmx200m will | |
29 specify 200 megs. The max is typically 85% of physical memory. | |
30 -eoom This flag will cause the process to exit if an out-of-memory | |
31 exception occurs. Requires Java 8u92+. | |
32 -da Disable assertions. | |
33 | |
34 Please contact Brian Bushnell at bbushnell@lbl.gov if you encounter any problems. | |
35 " | |
36 } | |
37 | |
38 #This block allows symlinked shellscripts to correctly set classpath. | |
39 pushd . > /dev/null | |
40 DIR="${BASH_SOURCE[0]}" | |
41 while [ -h "$DIR" ]; do | |
42 cd "$(dirname "$DIR")" | |
43 DIR="$(readlink "$(basename "$DIR")")" | |
44 done | |
45 cd "$(dirname "$DIR")" | |
46 DIR="$(pwd)/" | |
47 popd > /dev/null | |
48 | |
49 #DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/" | |
50 CP="$DIR""current/" | |
51 | |
52 z="-Xmx1g" | |
53 z2="-Xms1g" | |
54 set=0 | |
55 | |
56 if [ -z "$1" ] || [[ $1 == -h ]] || [[ $1 == --help ]]; then | |
57 usage | |
58 exit | |
59 fi | |
60 | |
61 calcXmx () { | |
62 source "$DIR""/calcmem.sh" | |
63 setEnvironment | |
64 parseXmx "$@" | |
65 if [[ $set == 1 ]]; then | |
66 return | |
67 fi | |
68 freeRam 1000m 24 | |
69 z="-Xmx${RAM}m" | |
70 z2="-Xms${RAM}m" | |
71 } | |
72 calcXmx "$@" | |
73 | |
74 process() { | |
75 local CMD="java $EA $EOOM $z -cp $CP driver.SummarizeContamReport $@" | |
76 echo $CMD >&2 | |
77 eval $CMD | |
78 } | |
79 | |
80 process "$@" |