Skip to content

Commit 6d7f2e1

Browse files
committed
Merge branch 'release/1.1.5'
2 parents 7c550ca + 9bb248d commit 6d7f2e1

File tree

5 files changed

+22
-13
lines changed

5 files changed

+22
-13
lines changed

.github/workflows/test_nucleo_qc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
python-version: [3.10.8]
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
ref: ${{ github.head_ref }}
2828
submodules: recursive
2929
- name: Set up Python
30-
uses: actions/setup-python@v3
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
- name : Set up NodeJS

cwl-commandlinetools

install_data.sh

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
#!/usr/bin/env bash
22

3-
43
# Test data is hosted on Google Drive at:
54
# https://drive.google.com/u/0/uc?id=1i1GA4AZhuw6Si8RmPFPJxmejIUt3ZZ1D
65

6+
fileid=1i1GA4AZhuw6Si8RmPFPJxmejIUt3ZZ1D
7+
78
filename=test_nucleo_qc.tar.gz
8-
# Note: Drive seems to change somewhat frequently how it handles endpoints for large files
9-
# add confirm parameter to link for this to work
10-
# previously used another wget scheme and gdown
11-
wget -O $filename "https://drive.google.com/u/0/uc?id=1i1GA4AZhuw6Si8RmPFPJxmejIUt3ZZ1D&export=download&confirm=t"
9+
foldername=test_data
10+
11+
# Skip if already have test data
12+
[[ -f $filename ]] && exit 0
13+
[[ -d $foldername ]] && exit 0
14+
15+
#curl -c ./cookie -s -k -L "https://drive.google.com/uc?export=download&id=$fileid" > /dev/null
16+
#curl -k -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}
17+
cd tests/inputs || exit
18+
curl -L "https://drive.usercontent.google.com/download?id=${fileid}&confirm=xxx" -o ${filename}
19+
1220
# Suppress linux warnings for MacOS tar.gz files
1321
if [[ "$OSTYPE" == "linux-gnu" ]]; then
14-
tar --warning=no-unknown-keyword -xzvf $filename -C tests/inputs/
22+
tar --warning=no-unknown-keyword -xzvf $filename
1523
elif [[ "$OSTYPE" == "darwin"* ]]; then
16-
tar -xzvf $filename -C tests/inputs/
24+
tar -xzvf $filename
1725
fi
18-
rm $filename
26+
27+
rm $filename

nucleo_aggregate_visualize.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ steps:
178178
source: config
179179
out:
180180
- id: aggregate_parsed_stats
181-
run: cwl-commandlinetools/cci_utils/0.3.1/general_stats_parse.cwl
181+
run: cwl-commandlinetools/cci_utils/0.3.2/general_stats_parse.cwl
182182
label: general_stats_parse
183183
'sbg:x': 870.1131591796875
184184
'sbg:y': 520.0625

0 commit comments

Comments
 (0)