File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -74,19 +74,20 @@ jobs:
74
74
75
75
- name : Run inference
76
76
run : |
77
+ # doing 10 days here as this is taking a while
77
78
last_ts=testrun/initial.ts
78
79
sc2ts initialise -v $last_ts testrun/match.db
79
- for date in `sc2ts list-dates testrun/metadata.db`; do
80
+ for date in `sc2ts list-dates testrun/metadata.db | head -n 10 `; do
80
81
out_ts=testrun/$date.ts
81
82
sc2ts extend $last_ts $date \
82
83
testrun/alignments.db testrun/metadata.db \
83
- testrun/match.db $out_ts --min-group-size=2
84
+ testrun/match.db $out_ts -v - -min-group-size=2
84
85
last_ts=$out_ts
85
86
done
86
87
87
88
- name : Validate
88
89
run : |
89
- sc2ts validate -v testrun/alignments.db testrun/2020-02-13 .ts
90
+ sc2ts validate -v testrun/alignments.db testrun/2020-02-02 .ts
90
91
91
92
- name : MatchDB
92
93
run : |
You can’t perform that action at this time.
0 commit comments