-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbbsort.sh
More file actions
executable file
·113 lines (95 loc) · 3.9 KB
/
bbsort.sh
File metadata and controls
executable file
·113 lines (95 loc) · 3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/bash
usage(){
echo "
Written by Brian Bushnell
Last modified February 19, 2026
Description: Sorts reads by name or other keys such as length,
quality, mapping position, flowcell coordinates, or taxonomy.
Writes temp files if memory is exceeded.
Usage: bbsort.sh in=<file> out=<file>
Input may be fasta, fastq, or sam, compressed or uncompressed.
Temp files will use the same format as the output. Pairs are
kept together if reads are paired, and in2/out2 may be used for that.
Example 1 - sort by name:
bbsort.sh in=raw.fq out=sorted.fq
Example 2 - sort by sequence:
bbsort.sh in=raw.fq out=sorted.fq sequence
Example 3 - sort by mapping position:
bbsort.sh in=mapped.sam out=sorted.sam position
Parameters:
in=<file> Input file.
out=<file> Output file.
name=t Sort reads by name.
length=f Sort reads by length.
quality=f Sort reads by quality.
position=f Sort reads by position (for mapped reads).
taxa=f Sort reads by taxonomy (for NCBI naming convention).
sequence=f Sort reads by sequence, alphabetically.
clump=f Sort reads by shared kmers, like Clumpify.
flowcell=f Sort reads by flowcell coordinates.
shuffle=f Shuffle reads randomly (untested).
list=<file> Sort reads according to this list of names.
ascending=t Sort ascending. This defaults to true except for length.
descending=f Sort descending instead of ascending. Overrides ascending flag.
maxfiles=12 Maximum number of temp files to use during external sort.
crispr=f Sort reads by CRISPR repeat quality score (requires neural network model).
genkmer=t Generate 5-bit kmers for topological/lexicographic sorting modes.
deleteearly=f Delete temp files as soon as they are merged, to save disk space.
Memory parameters (you might reduce these if you experience a crash)
memmult=0.30 Write a temp file when used memory exceeds this fraction
of available memory.
memlimit=0.65 Wait for temp files to finish writing until used memory
drops below this fraction of available memory.
delete=t Delete temporary files.
allowtemp=t Allow writing temporary files.
Taxonomy-sorting parameters (for taxa mode only):
tree= Specify a taxtree file. On Genepool, use 'auto'.
gi= Specify a gitable file. On Genepool, use 'auto'.
accession= Specify one or more comma-delimited NCBI accession to
taxid files. On Dori/NERSC, use 'auto'.
Note: name, length, and quality are mutually exclusive.
Sorting by quality actually sorts by average expected error rate,
so ascending will place the highest-quality reads first.
Java Parameters:
-Xmx This will set Java's memory usage, overriding
autodetection. -Xmx20g will specify 20 gigs of RAM, and -Xmx200m will
specify 200 megs. The max is typically 85% of physical memory.
-eoom This flag will cause the process to exit if an
out-of-memory exception occurs. Requires Java 8u92+.
-da Disable assertions.
Please contact Brian Bushnell at bbushnell@lbl.gov if you encounter any problems.
For documentation and the latest version, visit: https://bbmap.org
"
}
if [ -z "$1" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
usage
exit
fi
resolveSymlinks(){
SCRIPT="$(cd "$(dirname "$0")" && pwd)/$(basename "$0")"
while [ -h "$SCRIPT" ]; do
DIR="$(dirname "$SCRIPT")"
SCRIPT="$(readlink "$SCRIPT")"
[ "${SCRIPT#/}" = "$SCRIPT" ] && SCRIPT="$DIR/$SCRIPT"
done
DIR="$(cd "$(dirname "$SCRIPT")" && pwd)"
if [ -f "$DIR/bbtools.jar" ]; then
CP="$DIR/bbtools.jar"
else
CP="$DIR/current/"
fi
}
setEnv(){
. "$DIR/javasetup.sh"
. "$DIR/memdetect.sh"
parseJavaArgs "--xmx=2000m" "--xms=2000m" "--percent=84" "--mode=auto" "$@"
setEnvironment
}
launch() {
CMD="java $EA $EOOM $SIMD $XMX $XMS -cp $CP sort.SortByName $@"
echo "$CMD" >&2
eval $CMD
}
resolveSymlinks
setEnv "$@"
launch "$@"