comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/opt/bbmap-39.01-1/kapastats.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 December 6, 2018
7
8 Description: Gathers statistics on Kapa spike-in rates.
9
10 Usage: kapastats.sh in=<input file> out=<output file>
11
12 Parameters:
13 in=<file> TSV file of plate IDs, one ID per line.
14 out=<file> Primary output, or read 1 output.
15 overwrite=f (ow) Set to false to force the program to abort rather than
16 overwrite an existing file.
17 raw=f Output raw observations rather than statistics.
18
19 Java Parameters:
20 -Xmx This will set Java's memory usage, overriding autodetection.
21 -Xmx20g will specify 20 gigs of RAM, and -Xmx200m will
22 specify 200 megs. The max is typically 85% of physical memory.
23 -eoom This flag will cause the process to exit if an out-of-memory
24 exception occurs. Requires Java 8u92+.
25 -da Disable assertions.
26
27 Please contact Brian Bushnell at bbushnell@lbl.gov if you encounter any problems.
28 "
29 }
30
31 #This block allows symlinked shellscripts to correctly set classpath.
32 pushd . > /dev/null
33 DIR="${BASH_SOURCE[0]}"
34 while [ -h "$DIR" ]; do
35 cd "$(dirname "$DIR")"
36 DIR="$(readlink "$(basename "$DIR")")"
37 done
38 cd "$(dirname "$DIR")"
39 DIR="$(pwd)/"
40 popd > /dev/null
41
42 #DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
43 CP="$DIR""current/"
44
45 z="-Xmx200m"
46 z2="-Xms200m"
47 set=0
48
49 if [ -z "$1" ] || [[ $1 == -h ]] || [[ $1 == --help ]]; then
50 usage
51 exit
52 fi
53
54 calcXmx () {
55 source "$DIR""/calcmem.sh"
56 setEnvironment
57 parseXmx "$@"
58 }
59 calcXmx "$@"
60
61 kapastats() {
62 local CMD="java $EA $EOOM $z -cp $CP jgi.GatherKapaStats $@"
63 echo $CMD >&2
64 eval $CMD
65 }
66
67 kapastats "$@"