jpayne@69
|
1 #!/bin/bash
|
jpayne@69
|
2
|
jpayne@69
|
3 usage(){
|
jpayne@69
|
4 echo "
|
jpayne@69
|
5 Written by Brian Bushnell
|
jpayne@69
|
6 Last modified April 4, 2018
|
jpayne@69
|
7
|
jpayne@69
|
8 Description: Fuses sequences together, padding gaps with Ns.
|
jpayne@69
|
9
|
jpayne@69
|
10 Usage: fuse.sh in=<input file> out=<output file> pad=<number of Ns>
|
jpayne@69
|
11
|
jpayne@69
|
12 Parameters:
|
jpayne@69
|
13 in=<file> The 'in=' flag is needed if the input file is not the
|
jpayne@69
|
14 first parameter. 'in=stdin' will pipe from standard in.
|
jpayne@69
|
15 out=<file> The 'out=' flag is needed if the output file is not the
|
jpayne@69
|
16 second parameter. 'out=stdout' will pipe to standard out.
|
jpayne@69
|
17 pad=300 Pad this many N between sequences.
|
jpayne@69
|
18 maxlen=2g If positive, don't make fused sequences longer than this.
|
jpayne@69
|
19 quality=30 Fake quality scores, if generating fastq from fasta.
|
jpayne@69
|
20 overwrite=t (ow) Set to false to force the program to abort rather
|
jpayne@69
|
21 than overwrite an existing file.
|
jpayne@69
|
22 ziplevel=2 (zl) Set to 1 (lowest) through 9 (max) to change
|
jpayne@69
|
23 compression level; lower compression is faster.
|
jpayne@69
|
24 fusepairs=f Default mode fuses all sequences into one long sequence.
|
jpayne@69
|
25 Setting fusepairs=t will instead fuse each pair together.
|
jpayne@69
|
26 name= Set name of output sequence. Default is the name of
|
jpayne@69
|
27 the first input sequence.
|
jpayne@69
|
28
|
jpayne@69
|
29 Java Parameters:
|
jpayne@69
|
30 -Xmx This will set Java's memory usage, overriding
|
jpayne@69
|
31 autodetection. -Xmx20g will specify 20 gigs of RAM, and -Xmx200m will
|
jpayne@69
|
32 specify 200 megs. The max is typically 85% of physical memory.
|
jpayne@69
|
33 -eoom This flag will cause the process to exit if an out-of-memory
|
jpayne@69
|
34 exception occurs. Requires Java 8u92+.
|
jpayne@69
|
35 -da Disable assertions.
|
jpayne@69
|
36
|
jpayne@69
|
37 Please contact Brian Bushnell at bbushnell@lbl.gov if you encounter any problems.
|
jpayne@69
|
38 "
|
jpayne@69
|
39 }
|
jpayne@69
|
40
|
jpayne@69
|
41 #This block allows symlinked shellscripts to correctly set classpath.
|
jpayne@69
|
42 pushd . > /dev/null
|
jpayne@69
|
43 DIR="${BASH_SOURCE[0]}"
|
jpayne@69
|
44 while [ -h "$DIR" ]; do
|
jpayne@69
|
45 cd "$(dirname "$DIR")"
|
jpayne@69
|
46 DIR="$(readlink "$(basename "$DIR")")"
|
jpayne@69
|
47 done
|
jpayne@69
|
48 cd "$(dirname "$DIR")"
|
jpayne@69
|
49 DIR="$(pwd)/"
|
jpayne@69
|
50 popd > /dev/null
|
jpayne@69
|
51
|
jpayne@69
|
52 #DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
|
jpayne@69
|
53 CP="$DIR""current/"
|
jpayne@69
|
54
|
jpayne@69
|
55 z="-Xmx2g"
|
jpayne@69
|
56 z2="-Xms2g"
|
jpayne@69
|
57 set=0
|
jpayne@69
|
58
|
jpayne@69
|
59 if [ -z "$1" ] || [[ $1 == -h ]] || [[ $1 == --help ]]; then
|
jpayne@69
|
60 usage
|
jpayne@69
|
61 exit
|
jpayne@69
|
62 fi
|
jpayne@69
|
63
|
jpayne@69
|
64 calcXmx () {
|
jpayne@69
|
65 source "$DIR""/calcmem.sh"
|
jpayne@69
|
66 setEnvironment
|
jpayne@69
|
67 parseXmx "$@"
|
jpayne@69
|
68 if [[ $set == 1 ]]; then
|
jpayne@69
|
69 return
|
jpayne@69
|
70 fi
|
jpayne@69
|
71 freeRam 2000m 84
|
jpayne@69
|
72 z="-Xmx${RAM}m"
|
jpayne@69
|
73 z2="-Xms${RAM}m"
|
jpayne@69
|
74 }
|
jpayne@69
|
75 calcXmx "$@"
|
jpayne@69
|
76
|
jpayne@69
|
77 fuse() {
|
jpayne@69
|
78 local CMD="java $EA $EOOM $z -cp $CP jgi.FuseSequence $@"
|
jpayne@69
|
79 echo $CMD >&2
|
jpayne@69
|
80 eval $CMD
|
jpayne@69
|
81 }
|
jpayne@69
|
82
|
jpayne@69
|
83 fuse "$@"
|