We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17f0f0 commit b14dd9cCopy full SHA for b14dd9c
.github/workflows/ci.yml
@@ -74,8 +74,15 @@ jobs:
74
75
- name: Run inference
76
run: |
77
- sc2ts daily-extend -v testrun/alignments.db testrun/metadata.db \
78
- testrun/ --min-group-size=2
+ last_ts=testrun/initial.ts
+ sc2ts initialise -v $last_ts testrun/match.db
79
+ for date in `sc2ts list-dates testrun/metadata.db`; do
80
+ out_ts=testrun/$date.ts
81
+ sc2ts extend $last_ts $date \
82
+ testrun/alignments.db testrun/metadata.db \
83
+ testrun/match.db $out_ts --min-group-size=2
84
+ last_ts=$out_ts
85
+ done
86
87
- name: Validate
88
0 commit comments