Skip to content

Instantly share code, notes, and snippets.

@thanhleviet
Last active December 1, 2023 11:29
Show Gist options
  • Save thanhleviet/b5b8398baa75c35e47aeb3593bfcdeb6 to your computer and use it in GitHub Desktop.
Save thanhleviet/b5b8398baa75c35e47aeb3593bfcdeb6 to your computer and use it in GitHub Desktop.

1. Nanopore basecalling with Dorado

https://github.com/nanoporetech/dorado

Setup

Running

We'd like to test simplex basecalling with three models https://github.com/nanoporetech/dorado#simplex-basecalling

[email protected]
[email protected]
[email protected]
#!/sur/bin/env bash

DORADO=/home/boston/dorado-0.4.3-linux-x64/bin/dorado
MODELS=("[email protected]" "[email protected]" "[email protected]")
DATA=/home/boston/benchmarking/
for model in "${MODELS[@]}";
do
echo "Running $model"
$DORADO basecaller -v models/$model $DATA 2>> $model.log > $model.bam
done

Metrics

  • Runtime and samples/s which are reported when dorado completes successfully.
  • GPU memory usage

2. ai-benchmarking

https://pypi.org/project/ai-benchmark/

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