-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to vaccine impact modeling assumptions
- Loading branch information
Showing
5 changed files
with
82 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
delete from par where vac = 0 and (vac_eff != 0.1 or vac_cov != 0.5); | ||
delete from par where vac = 0 and (vac_eff != 0.5 or vac_cov != 0.5); | ||
delete from par where pvl = 1 and vac_day = 0; | ||
delete from job where serial not in (select serial from par); | ||
delete from met where serial not in (select serial from par); | ||
update par set seed = realization; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
for i in `seq 1 540` | ||
for i in `seq 1 660` | ||
do | ||
./abc_sql abc_covid.json --simulate -n 2 2> /dev/null | ||
done |