Skip to content

Instantly share code, notes, and snippets.

@kdm9
Created May 20, 2015 01:20
Show Gist options
  • Save kdm9/d32f9c576edc1b249a9d to your computer and use it in GitHub Desktop.
Save kdm9/d32f9c576edc1b249a9d to your computer and use it in GitHub Desktop.
fastq=~/ws/gbstrim/data/em_10B8.fq
for ext in 'uncomp' 'gz' 'zstd'
do
for i in {1..4}
do
echo $ext $i
/usr/bin/time -f 'TIME %U %S %e %M' load-into-counting.py \
-T 1 \
-N 4 \
-x 1e8 \
-k 20 \
-b \
test${i}.kh.$ext \
$fastq |& grep 'TIME'
/usr/bin/time -f 'TIME %U %S %e %M' abundance-dist.py \
test${i}.kh.$ext \
$fastq \
test${i}.adist.$ext |& grep 'TIME'
done
done
@mr-c
Copy link

mr-c commented May 20, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment