We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 43fcdd4 + 72393c4 commit 5a2cab3Copy full SHA for 5a2cab3
1 file changed
.github/workflows/ci.yml
@@ -27,12 +27,6 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip setuptools packaging
29
30
- - name: Download GRCh37.tar.gz if not present
31
- run: |
32
- if [ ! -f ./src/GRCh37.tar.gz ]; then
33
- wget --connect-timeout=10 --tries=20 ftp://alexandrovlab-ftp.ucsd.edu/pub/tools/SigProfilerMatrixGenerator/GRCh37.tar.gz -P ./src/
34
- fi
35
-
36
- name: Cache src directory
37
uses: actions/cache@v4
38
with:
@@ -41,6 +35,12 @@ jobs:
41
restore-keys: |
42
${{ runner.os }}-src-
43
+ - name: Download GRCh37.tar.gz if not present
39
+ run: |
40
+ if [ ! -f ./src/GRCh37.tar.gz ]; then
+ wget --connect-timeout=10 --tries=20 ftp://alexandrovlab-ftp.ucsd.edu/pub/tools/SigProfilerMatrixGenerator/GRCh37.tar.gz -P ./src/
+ fi
+
44
- name: Install package with tests
45
46
pip install .[tests]
0 commit comments