Skip to content

Commit

Permalink
Update cd-hit and mmseq installation2
Browse files Browse the repository at this point in the history
  • Loading branch information
breimanntools committed Jun 27, 2024
1 parent 383ad86 commit 7ece328
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,17 @@ jobs:
- name: Install cd-hit (Windows)
if: runner.os == 'Windows'
run: |
curl -LO https://github.com/weizhongli/cdhit/releases/download/V4.8.1/cd-hit-v4.8.1-2019-0228.zip
Expand-Archive -Path cd-hit-v4.8.1-2019-0228.zip -DestinationPath $Env:USERPROFILE\cdhit
curl -L -o cd-hit.zip https://github.com/weizhongli/cdhit/releases/download/V4.8.1/cd-hit-v4.8.1-2019-0228.zip
New-Item -ItemType Directory -Force -Path $Env:USERPROFILE\cdhit
Expand-Archive -Path cd-hit.zip -DestinationPath $Env:USERPROFILE\cdhit
$Env:Path += ";$Env:USERPROFILE\cdhit\cd-hit-v4.8.1-2019-0228\bin"
- name: Install mmseqs2 (Windows)
if: runner.os == 'Windows'
run: |
curl -LO https://mmseqs.com/latest/mmseqs-win64.zip
Expand-Archive -Path mmseqs-win64.zip -DestinationPath $Env:USERPROFILE\mmseqs
curl -L -o mmseqs2.zip https://mmseqs.com/latest/mmseqs-win64.zip
New-Item -ItemType Directory -Force -Path $Env:USERPROFILE\mmseqs
Expand-Archive -Path mmseqs2.zip -DestinationPath $Env:USERPROFILE\mmseqs
$Env:Path += ";$Env:USERPROFILE\mmseqs\mmseqs-win64"
- name: Run Tests
Expand Down

0 comments on commit 7ece328

Please sign in to comment.