Skip to content

Instantly share code, notes, and snippets.

@bsipos
Created March 29, 2020 12:16
Show Gist options
  • Save bsipos/b21bd645b09029838a3c345b8abf592a to your computer and use it in GitHub Desktop.
Save bsipos/b21bd645b09029838a3c345b8abf592a to your computer and use it in GitHub Desktop.
#!/bin/bash -
set -o nounset # Treat unset variables as an error
TSV="count_timing.tsv"
CORES=4
echo "Time" > $TSV
for i in `seq 1 10000`
do
seqkit -j $CORES count pcs109_5k.fq 1>/dev/null 2>> $TSV
done
csvtk watch -O count_timing.pdf -f Time $TSV
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment