Skip to content

Commit

Permalink
install minimap2 binary directly
Browse files Browse the repository at this point in the history
  • Loading branch information
lrauschning committed Dec 12, 2024
1 parent 03c6094 commit ce43346
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ jobs:
uses: schneebergerlab/msyd@main
with:
python-version: "3.12"
- name: Install other tools using conda
- name: Install minimap2 manually # conda doesn't seem to work
run: |
$CONDA/bin/conda install -c conda-forge -c bioconda "bioconda::minimap2"
curl -L https://github.com/lh3/minimap2/releases/download/v2.28/minimap2-2.28_x64-linux.tar.bz2 | tar -jxvf -
mv minimap2-2.28_x64-linux\/minimap2 ./
./minimap2 -h # test it worked & is callable
- name: Test example_run.sh
run: |
minimap2 -h
$(tail -n +2 ./example/example_workflow.sh | sed -e 's/^syri/python <(echo "import syri.scripts.syri;syri.scripts.syri.main()")/' )
$(tail -n +2 ./example/example_workflow.sh | sed -e 's/^syri/python <(echo "import syri.scripts.syri;syri.scripts.syri.main()")/' -e 's/^minimap2/.\/minimap2/' )
shell: bash

0 comments on commit ce43346

Please sign in to comment.