Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions fqcnt/fqcnt_java_bbtools.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
# BBTools FastqScan for biofast benchmark
# Requirements:
# - Java 18+ required (for jdk.incubator.vector SIMD support)
# - Java 25 recommended for optimal performance
# Setup:
# git clone --depth=1 https://github.com/bbushnell/BBTools

BBTools/fastqscan.sh in="$1" 2>/dev/null | \
awk '/^Records:/{r=$2} /^Bases:/{b=$2} /^Quals:/{q=$2} END{print r"\t"b"\t"q}'