This repository was archived by the owner on Nov 24, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +53
-4
lines changed Expand file tree Collapse file tree 6 files changed +53
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @covid-modeling/api" ,
3
- "version" : " 0.9.0 " ,
3
+ "version" : " 0.9.1 " ,
4
4
"main" : " dist/src/index" ,
5
5
"types" : " dist/src/index.d.ts" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 126
126
"enum" : [
127
127
" mrc-ide-covid-sim" ,
128
128
" basel" ,
129
- " mc19"
129
+ " mc19" ,
130
+ " idm-covasim"
130
131
],
131
132
"type" : " string"
132
133
},
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ export enum ModelSlug {
29
29
MRCIDECovidSim = 'mrc-ide-covid-sim' ,
30
30
Basel = 'basel' ,
31
31
MC19 = 'mc19' ,
32
+ IDMCovasim = 'idm-covasim' ,
32
33
}
33
34
34
35
export interface Model {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @covid-modeling/model-runner" ,
3
- "version" : " 1.1.1 " ,
3
+ "version" : " 1.1.2 " ,
4
4
"main" : " dist/index.js" ,
5
5
"scripts" : {
6
6
"test" : " PATH=$PATH:../../node_modules/.bin && mocha --debug-brk --ui tdd -r ts-node/register test/unit/*-test.ts" ,
19
19
"dependencies" : {
20
20
"@azure/identity" : " ^1.1.0-preview1" ,
21
21
"@azure/storage-blob" : " ^12.1.1" ,
22
- "@covid-modeling/api" : " 0.9.* " ,
22
+ "@covid-modeling/api" : " 0.9.1 " ,
23
23
"archiver" : " ^4.0.1" ,
24
24
"d3" : " ^5.15.0" ,
25
25
"dockerode" : " ^3.2.0" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "id" : " my-model-run-id" ,
3
+ "callbackURL" : null ,
4
+ "models" : [
5
+ {
6
+ "slug" : " idm-covasim" ,
7
+ "imageURL" : " docker.pkg.github.com/covid-modeling/covasim-connector/covasim-connector:master"
8
+ }
9
+ ],
10
+ "configuration" : {
11
+ "region" : " US" ,
12
+ "subregion" : " US-NY" ,
13
+ "parameters" : {
14
+ "calibrationDate" : " 2020-04-18" ,
15
+ "calibrationCaseCount" : 1400 ,
16
+ "calibrationDeathCount" : 200 ,
17
+ "interventionPeriods" : [
18
+ {
19
+ "startDate" : " 2020-03-18" ,
20
+ "reductionPopulationContact" : 10 ,
21
+ "socialDistancing" : " moderate"
22
+ },
23
+ {
24
+ "startDate" : " 2020-03-22" ,
25
+ "reductionPopulationContact" : 34 ,
26
+ "socialDistancing" : " moderate" ,
27
+ "schoolClosure" : " aggressive"
28
+ },
29
+ {
30
+ "startDate" : " 2020-03-23" ,
31
+ "reductionPopulationContact" : 64 ,
32
+ "socialDistancing" : " aggressive" ,
33
+ "schoolClosure" : " aggressive"
34
+ },
35
+ {
36
+ "startDate" : " 2020-07-01" ,
37
+ "reductionPopulationContact" : 0
38
+ }
39
+ ],
40
+ "r0" : null
41
+ }
42
+ }
43
+ }
Original file line number Diff line number Diff line change 13
13
{
14
14
"slug" : " mc19" ,
15
15
"imageURL" : " docker.pkg.github.com/covid-modeling/model-runner/modelingcovid-covidmodel-connector:master"
16
+ },
17
+ {
18
+ "slug" : " idm-covasim" ,
19
+ "imageURL" : " docker.pkg.github.com/covid-modeling/covasim-connector/covasim-connector:master"
16
20
}
17
21
],
18
22
"configuration" : {
You can’t perform that action at this time.
0 commit comments