Skip to content

Commit bd95818

Browse files
committed
Remove vcf_to_zarr usage
1 parent b46be74 commit bd95818

File tree

3 files changed

+4
-191
lines changed

3 files changed

+4
-191
lines changed

.github/scripts/test_sgkit_vcf.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/wheels.yml

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
with:
3939
path: dist
4040

41-
unix-test:
41+
test:
4242
# This workflow only runs on the origin org
4343
if: github.repository_owner == 'sgkit-dev'
4444
needs: ['build']
4545
strategy:
4646
matrix:
4747
# don't use macos-latest as it uses M1 which doesn't work
48-
os: [ubuntu-latest, macos-12]
48+
os: [ubuntu-latest, macos-12, windows-latest]
4949
python-version: ["3.9", "3.10", "3.11"]
5050
runs-on: ${{ matrix.os }}
5151
steps:
@@ -64,46 +64,16 @@ jobs:
6464
python -VV
6565
# Install the local wheel
6666
wheel=$(ls artifact/sgkit-*.whl)
67-
pip install ${wheel} ${wheel}[bgen] ${wheel}[plink] ${wheel}[vcf]
67+
pip install ${wheel} ${wheel}[bgen] ${wheel}[plink]
6868
python sgkit-copy/.github/scripts/test_sgkit.py
6969
python sgkit-copy/.github/scripts/test_sgkit_bgen.py
7070
python sgkit-copy/.github/scripts/test_sgkit_plink.py
71-
python sgkit-copy/.github/scripts/test_sgkit_vcf.py
7271
73-
# Windows doesn't support vcf
74-
windows-test:
75-
# This workflow only runs on the origin org
76-
if: github.repository_owner == 'sgkit-dev'
77-
runs-on: windows-latest
78-
needs: ['build']
79-
strategy:
80-
matrix:
81-
python-version: ["3.9"]
82-
steps:
83-
# checkout repo to subdirectory to get access to scripts
84-
- uses: actions/checkout@v2
85-
with:
86-
path: sgkit-copy
87-
- name: Download artifacts
88-
uses: actions/[email protected]
89-
- name: Set up Python ${{ matrix.python-version }}
90-
uses: actions/setup-python@v2
91-
with:
92-
python-version: ${{ matrix.python-version }}
93-
- name: Install wheel and test
94-
run: |
95-
python -VV
96-
# Install the local wheel
97-
$env:wheel = $(ls artifact/sgkit-*.whl)
98-
pip install $env:wheel "$env:wheel[bgen]" "$env:wheel[plink]"
99-
python sgkit-copy/.github/scripts/test_sgkit.py
100-
python sgkit-copy/.github/scripts/test_sgkit_bgen.py
101-
python sgkit-copy/.github/scripts/test_sgkit_plink.py
10272
10373
pypi-upload:
10474
if: github.repository_owner == 'sgkit-dev'
10575
runs-on: ubuntu-latest
106-
needs: ['unix-test', 'windows-test']
76+
needs: ['test']
10777
steps:
10878
- name: Download all
10979
uses: actions/[email protected]

benchmarks/benchmarks_vcf.py

Lines changed: 0 additions & 142 deletions
This file was deleted.

0 commit comments

Comments
 (0)