Skip to content

Commit

Permalink
rename folder for summarized location/date counts
Browse files Browse the repository at this point in the history
  • Loading branch information
bsweger committed Oct 8, 2024
1 parent c9a571f commit e757dcc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git checkout -b new_location_date_sequence_counts_"$PR_DATETIME"
git add auxiliary-data/unscore-location-dates/
git add auxiliary-data/unscored-location-dates/
git commit -m "Add sequence counts by location & date $PR_DATETIME"
git push -u origin new_location_date_sequence_counts_"$PR_DATETIME"
gh pr create \
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To run the script manually (without RStudio):

For each location used by this hub, `get_location_date_counts.py` generates a daily count of Sars-Cov-2 genome sequences collected.
The output includes counts for each of the 31 days prior to the latest round's nowcast date (_i.e._, the round_id)
This script writes its output to `auxiliary-data/unscore-location-dates/[round_id].csv`.
This script writes its output to `auxiliary-data/unscored-location-dates/[round_id].csv`.
To run the script manually:
Expand Down
2 changes: 1 addition & 1 deletion src/get_location_date_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ def test_counts(round_close_time: datetime, computed_counts: pl.DataFrame):
round_id = date_files[0].split(".")[0]

output_path = (
Path(__file__).parents[1] / "auxiliary-data" / "unscore-location-dates"
Path(__file__).parents[1] / "auxiliary-data" / "unscored-location-dates"
)
main(round_id, output_path)

0 comments on commit e757dcc

Please sign in to comment.