comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/opt/bbmap-39.01-1/invertkey.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 October 2, 2017
7
8 Description: Inverts a sketch key, given a matching reference.
9
10 Usage: invertsketch.sh in=<reference> key=<key> k=<31>
11
12 I/O parameters:
13 out=<file> Output file.
14 overwrite=f (ow) Set to false to force the program to abort rather than
15 overwrite an existing file.
16
17 Processing parameters:
18
19
20 Java Parameters:
21 -Xmx This will set Java's memory usage, overriding autodetection.
22 -Xmx20g will specify 20 gigs of RAM, and -Xmx200m will
23 specify 200 megs. The max is typically 85% of physical memory.
24 -eoom This flag will cause the process to exit if an out-of-memory
25 exception occurs. Requires Java 8u92+.
26 -da Disable assertions.
27
28 Please contact Brian Bushnell at bbushnell@lbl.gov if you encounter any problems.
29 "
30 }
31
32 #This block allows symlinked shellscripts to correctly set classpath.
33 pushd . > /dev/null
34 DIR="${BASH_SOURCE[0]}"
35 while [ -h "$DIR" ]; do
36 cd "$(dirname "$DIR")"
37 DIR="$(readlink "$(basename "$DIR")")"
38 done
39 cd "$(dirname "$DIR")"
40 DIR="$(pwd)/"
41 popd > /dev/null
42
43 #DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
44 CP="$DIR""current/"
45
46 z="-Xmx4g"
47 z2="-Xms4g"
48 set=0
49
50 if [ -z "$1" ] || [[ $1 == -h ]] || [[ $1 == --help ]]; then
51 usage
52 exit
53 fi
54
55 calcXmx () {
56 source "$DIR""/calcmem.sh"
57 setEnvironment
58 parseXmx "$@"
59 if [[ $set == 1 ]]; then
60 return
61 fi
62 freeRam 4000m 84
63 z="-Xmx${RAM}m"
64 z2="-Xms${RAM}m"
65 }
66 calcXmx "$@"
67
68 makepolymers() {
69 local CMD="java $EA $EOOM $z $z2 -cp $CP sketch.InvertKey $@"
70 echo $CMD >&2
71 eval $CMD
72 }
73
74 makepolymers "$@"