From 4d9a7151378e972b7f839f138236b1b2c3b2da09 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 29 Jul 2025 00:18:30 +0000 Subject: [PATCH 1/7] Initial plan From eb5cb5c204a335d694a1cc71e29dda16bba5ffeb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 29 Jul 2025 00:33:17 +0000 Subject: [PATCH 2/7] Implement project status report improvements Co-authored-by: gvegayon <893619+gvegayon@users.noreply.github.com> --- scripts/update_project_status.R | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/scripts/update_project_status.R b/scripts/update_project_status.R index a02e849..da91e3e 100755 --- a/scripts/update_project_status.R +++ b/scripts/update_project_status.R @@ -74,7 +74,7 @@ get_project_metrics <- function(owner, repo, token = NULL) { last_commit_date = "Unknown", last_commit_sha = "Unknown", contributor_avatars = character(0), - total_commits = 0 + total_commits = -1 )) } @@ -109,7 +109,7 @@ get_project_metrics <- function(owner, repo, token = NULL) { } # Get total commits count (use repository stats instead of search API for better reliability) - total_commits <- 0 + total_commits <- -1 # -1 indicates API failure # Try getting repo stats first (faster and more reliable) stats_data <- github_api_call(paste0(base_url, "/stats/participation"), token) if (!is.null(stats_data) && !is.null(stats_data$all)) { @@ -219,7 +219,7 @@ main <- function() { last_commit_date = as.character("Unknown"), last_commit_sha = as.character("Unknown"), contributor_avatars_html = as.character(""), - total_commits = as.integer(0) + total_commits = as.integer(-1) )] # Get metrics for each project (with progress tracking) @@ -264,8 +264,8 @@ main <- function() { "", paste("This dashboard tracks", nrow(projects_with_github), "EpiForeSITE projects with GitHub repositories."), "", - "| Project | Contributors | Issues | PRs | Last Commit | Commits | Repository |", - "|---------|-------------|--------|-----|-------------|---------|------------|" + "| Project | Contributors | Issues, PRs, and Last Commit | Commits | Repository |", + "|---------|-------------|--------------------------|---------|------------|" ) # Create table rows @@ -278,7 +278,7 @@ main <- function() { # Handle missing or invalid data gracefully contributors_display <- if (row$contributors > 0) { if (nchar(row$contributor_avatars_html) > 0) { - paste0(row$contributor_avatars_html, " (", row$contributors, ")") + row$contributor_avatars_html } else { paste0(row$contributors, " contributor", ifelse(row$contributors > 1, "s", "")) } @@ -305,7 +305,10 @@ main <- function() { "No recent commits" } - commits_display <- if (row$total_commits > 0) { + # Combine Issues, PRs, and Last Commit into single column with line breaks + combined_issues_prs_commits <- paste(issues_display, prs_display, last_commit_display, sep = "
") + + commits_display <- if (row$total_commits >= 0) { as.character(row$total_commits) } else { "N/A" @@ -316,9 +319,7 @@ main <- function() { table_row <- paste( paste0("| [", project_name, "](", github_link, ")"), contributors_display, - issues_display, - prs_display, - last_commit_display, + combined_issues_prs_commits, commits_display, repo_cell, "|", From 1c52a721fb5416f88ada93b6b5d99efd51f12113 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 29 Jul 2025 00:36:29 +0000 Subject: [PATCH 3/7] Complete project status report improvements with validation Co-authored-by: gvegayon <893619+gvegayon@users.noreply.github.com> --- project_status.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/project_status.md b/project_status.md index ab6600c..b943d16 100644 --- a/project_status.md +++ b/project_status.md @@ -1,31 +1,31 @@ # Project Status Dashboard -Last updated: 2025-07-28 19:17:11.232352 (UTC) +Last updated: 2025-07-29 00:35:51.310259 (UTC) This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. -| Project | Contributors | Issues | PRs | Last Commit | Commits | Repository | -|---------|-------------|--------|-----|-------------|---------|------------| -| [Attention-Based Models for Snow-Water Equivalent Prediction](https://github.com/Krishuthapa/SWE-Attention) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/issues) | [![PRs](https://img.shields.io/github/issues-pr/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/pulls) | 2024-12-12 ([`e95fe16`](https://github.com/Krishuthapa/SWE-Attention/commits)) | 2 | [Krishuthapa/SWE-Attention](https://github.com/Krishuthapa/SWE-Attention) | | -| [Bayesian Transmission Model](https://github.com/EpiForeSITE/bayesian-transmission) | ContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/pulls) | 2025-03-11 ([`f78a06a`](https://github.com/EpiForeSITE/bayesian-transmission/commits)) | 46 | [EpiForeSITE/bayesian-transmission](https://github.com/EpiForeSITE/bayesian-transmission) | | -| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | ContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls) | 2025-05-09 ([`8e9bac5`](https://github.com/EpiForeSITE/branching_process//commits)) | 123 | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | -| [COVID-19 Jail Model](https://github.com/epimodels/COVID19-Jails) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/issues) | [![PRs](https://img.shields.io/github/issues-pr/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/pulls) | 2020-04-30 ([`561491b`](https://github.com/epimodels/COVID19-Jails/commits)) | N/A | [epimodels/COVID19-Jails](https://github.com/epimodels/COVID19-Jails) | | -| [COVID-19 NCAA Football](https://github.com/epimodels/inperson_sports) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/issues) | [![PRs](https://img.shields.io/github/issues-pr/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/pulls) | 2020-09-28 ([`9681971`](https://github.com/epimodels/inperson_sports/commits)) | N/A | [epimodels/inperson_sports](https://github.com/epimodels/inperson_sports) | | -| [Covid Scenario model](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | ContributorContributorContributorContributorContributor +5 more (20) | [![Issues](https://img.shields.io/github/issues/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/issues) | [![PRs](https://img.shields.io/github/issues-pr/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/pulls) | 2023-02-21 ([`0c6084b`](https://github.com/HopkinsIDD/COVIDScenarioPipeline/commits)) | N/A | [HopkinsIDD/COVIDScenarioPipeline](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | | -| [CU Metapopulation](https://github.com/epimodels/Metapopulation_MRSA) | ContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/issues) | [![PRs](https://img.shields.io/github/issues-pr/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/pulls) | 2022-07-14 ([`35bf356`](https://github.com/epimodels/Metapopulation_MRSA/commits)) | N/A | [epimodels/Metapopulation_MRSA](https://github.com/epimodels/Metapopulation_MRSA) | | -| [epiworld: Fast Agent-Based Epi Models](https://github.com/UofUEpiBio/epiworld) | ContributorContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/issues) | [![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/pulls) | 2025-07-18 ([`f4ecac2`](https://github.com/UofUEpiBio/epiworld/commits)) | 30 | [UofUEpiBio/epiworld](https://github.com/UofUEpiBio/epiworld) | | -| [epiworld-forecasts: Automatic Disease Forecasting with epiworldR](https://github.com/EpiForeSITE/epiworld-forecasts) | ContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/pulls) | 2025-07-22 ([`e69d887`](https://github.com/EpiForeSITE/epiworld-forecasts/commits)) | 49 | [EpiForeSITE/epiworld-forecasts](https://github.com/EpiForeSITE/epiworld-forecasts) | | -| [epiworldpy: A python wrapper for epiworld](https://github.com/UofUEpiBio/epiworldpy) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/issues) | [![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/pulls) | 2025-07-23 ([`c829a07`](https://github.com/UofUEpiBio/epiworldpy/commits)) | 5 | [UofUEpiBio/epiworldpy](https://github.com/UofUEpiBio/epiworldpy) | | -| [GeoCovid](https://github.com/Fernandez-Lab-WSU/geocovid_app) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/issues) | [![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/pulls) | No recent commits | N/A | [Fernandez-Lab-WSU/geocovid_app](https://github.com/Fernandez-Lab-WSU/geocovid_app) | | -| [linkeR: Effortless Linked Views for Shiny Applications](https://github.com/EpiForeSITE/linkeR/) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//pulls) | 2025-07-17 ([`39e9078`](https://github.com/EpiForeSITE/linkeR//commits)) | 35 | [EpiForeSITE/linkeR](https://github.com/EpiForeSITE/linkeR/) | | -| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | ContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls) | 2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/multigroup-vaccine/commits)) | 128 | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | -| [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | Contributor (20) | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues) | [![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls) | 2024-10-10 ([`c21c84e`](https://github.com/madhobi/multitask_unit_and_days/commits)) | 1 | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | | -| [PhenoMapper: an interactive toolbox for the visual exploration of phenomics data](https://github.com/tdavislab/PhenoMapper) | ContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/issues) | [![PRs](https://img.shields.io/github/issues-pr/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/pulls) | 2024-04-22 ([`4cc2a66`](https://github.com/tdavislab/PhenoMapper/commits)) | N/A | [tdavislab/PhenoMapper](https://github.com/tdavislab/PhenoMapper) | | -| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | ContributorContributorContributorContributorContributor +4 more (20) | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues) | [![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls) | 2025-06-15 ([`23ce87e`](https://github.com/kingaa/pomp/commits)) | 51 | [kingaa/pomp](https://github.com/kingaa/pomp) | | -| [Post-acute care model](https://github.com/mattrmaloney/covid-post-acute-care) | No data | [![Issues](https://img.shields.io/github/issues/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/issues) | [![PRs](https://img.shields.io/github/issues-pr/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/pulls) | 2020-06-13 ([`b60c0a6`](https://github.com/mattrmaloney/covid-post-acute-care/commits)) | N/A | [mattrmaloney/covid-post-acute-care](https://github.com/mattrmaloney/covid-post-acute-care) | | -| [quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | ContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/issues) | [![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/pulls) | 2025-03-24 ([`83d2c4b`](https://github.com/Fernandez-Lab-WSU/quadkeyr/commits)) | 39 | [Fernandez-Lab-WSU/quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | | -| [rbranding](https://github.com/EpiForeSITE/branding-package) | ContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls) | 2025-07-28 ([`6fa2dfd`](https://github.com/EpiForeSITE/branding-package/commits)) | 67 | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | -| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/vaccine-equity-model) | ContributorContributorContributorContributor (20) | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/issues) | [![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/pulls) | 2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/vaccine-equity-model/commits)) | 128 | [EpiForeSITE/vaccine-equity-model](https://github.com/EpiForeSITE/vaccine-equity-model) | | +| Project | Contributors | Issues, PRs, and Last Commit | Commits | Repository | +|---------|-------------|--------------------------|---------|------------| +| [Attention-Based Models for Snow-Water Equivalent Prediction](https://github.com/Krishuthapa/SWE-Attention) | No data | [![Issues](https://img.shields.io/github/issues/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/issues)
[![PRs](https://img.shields.io/github/issues-pr/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/pulls)
No recent commits | N/A | [Krishuthapa/SWE-Attention](https://github.com/Krishuthapa/SWE-Attention) | | +| [Bayesian Transmission Model](https://github.com/EpiForeSITE/bayesian-transmission) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/pulls)
No recent commits | N/A | [EpiForeSITE/bayesian-transmission](https://github.com/EpiForeSITE/bayesian-transmission) | | +| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls)
No recent commits | N/A | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | +| [COVID-19 Jail Model](https://github.com/epimodels/COVID19-Jails) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/pulls)
No recent commits | N/A | [epimodels/COVID19-Jails](https://github.com/epimodels/COVID19-Jails) | | +| [COVID-19 NCAA Football](https://github.com/epimodels/inperson_sports) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/pulls)
No recent commits | N/A | [epimodels/inperson_sports](https://github.com/epimodels/inperson_sports) | | +| [Covid Scenario model](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | No data | [![Issues](https://img.shields.io/github/issues/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/issues)
[![PRs](https://img.shields.io/github/issues-pr/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/pulls)
No recent commits | N/A | [HopkinsIDD/COVIDScenarioPipeline](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | | +| [CU Metapopulation](https://github.com/epimodels/Metapopulation_MRSA) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/pulls)
No recent commits | N/A | [epimodels/Metapopulation_MRSA](https://github.com/epimodels/Metapopulation_MRSA) | | +| [epiworld: Fast Agent-Based Epi Models](https://github.com/UofUEpiBio/epiworld) | No data | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/pulls)
No recent commits | N/A | [UofUEpiBio/epiworld](https://github.com/UofUEpiBio/epiworld) | | +| [epiworld-forecasts: Automatic Disease Forecasting with epiworldR](https://github.com/EpiForeSITE/epiworld-forecasts) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/pulls)
No recent commits | N/A | [EpiForeSITE/epiworld-forecasts](https://github.com/EpiForeSITE/epiworld-forecasts) | | +| [epiworldpy: A python wrapper for epiworld](https://github.com/UofUEpiBio/epiworldpy) | No data | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/pulls)
No recent commits | N/A | [UofUEpiBio/epiworldpy](https://github.com/UofUEpiBio/epiworldpy) | | +| [GeoCovid](https://github.com/Fernandez-Lab-WSU/geocovid_app) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/pulls)
No recent commits | N/A | [Fernandez-Lab-WSU/geocovid_app](https://github.com/Fernandez-Lab-WSU/geocovid_app) | | +| [linkeR: Effortless Linked Views for Shiny Applications](https://github.com/EpiForeSITE/linkeR/) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//pulls)
No recent commits | N/A | [EpiForeSITE/linkeR](https://github.com/EpiForeSITE/linkeR/) | | +| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls)
No recent commits | N/A | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | +| [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | No data | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues)
[![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls)
No recent commits | N/A | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | | +| [PhenoMapper: an interactive toolbox for the visual exploration of phenomics data](https://github.com/tdavislab/PhenoMapper) | No data | [![Issues](https://img.shields.io/github/issues/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/issues)
[![PRs](https://img.shields.io/github/issues-pr/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/pulls)
No recent commits | N/A | [tdavislab/PhenoMapper](https://github.com/tdavislab/PhenoMapper) | | +| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | No data | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues)
[![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls)
No recent commits | N/A | [kingaa/pomp](https://github.com/kingaa/pomp) | | +| [Post-acute care model](https://github.com/mattrmaloney/covid-post-acute-care) | No data | [![Issues](https://img.shields.io/github/issues/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/issues)
[![PRs](https://img.shields.io/github/issues-pr/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/pulls)
No recent commits | N/A | [mattrmaloney/covid-post-acute-care](https://github.com/mattrmaloney/covid-post-acute-care) | | +| [quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/pulls)
No recent commits | N/A | [Fernandez-Lab-WSU/quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | | +| [rbranding](https://github.com/EpiForeSITE/branding-package) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls)
No recent commits | N/A | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | +| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/vaccine-equity-model) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/pulls)
No recent commits | N/A | [EpiForeSITE/vaccine-equity-model](https://github.com/EpiForeSITE/vaccine-equity-model) | | --- From cb4fe40e05d17ef245214f1c71cda7a508c2b60e Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:47:17 +0000 Subject: [PATCH 4/7] Automatic project status update --- project_status.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/project_status.md b/project_status.md index b943d16..40dab61 100644 --- a/project_status.md +++ b/project_status.md @@ -1,31 +1,31 @@ # Project Status Dashboard -Last updated: 2025-07-29 00:35:51.310259 (UTC) +Last updated: 2025-07-29 15:47:16.648494 (UTC) This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. | Project | Contributors | Issues, PRs, and Last Commit | Commits | Repository | |---------|-------------|--------------------------|---------|------------| -| [Attention-Based Models for Snow-Water Equivalent Prediction](https://github.com/Krishuthapa/SWE-Attention) | No data | [![Issues](https://img.shields.io/github/issues/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/issues)
[![PRs](https://img.shields.io/github/issues-pr/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/pulls)
No recent commits | N/A | [Krishuthapa/SWE-Attention](https://github.com/Krishuthapa/SWE-Attention) | | -| [Bayesian Transmission Model](https://github.com/EpiForeSITE/bayesian-transmission) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/pulls)
No recent commits | N/A | [EpiForeSITE/bayesian-transmission](https://github.com/EpiForeSITE/bayesian-transmission) | | -| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls)
No recent commits | N/A | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | -| [COVID-19 Jail Model](https://github.com/epimodels/COVID19-Jails) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/pulls)
No recent commits | N/A | [epimodels/COVID19-Jails](https://github.com/epimodels/COVID19-Jails) | | -| [COVID-19 NCAA Football](https://github.com/epimodels/inperson_sports) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/pulls)
No recent commits | N/A | [epimodels/inperson_sports](https://github.com/epimodels/inperson_sports) | | -| [Covid Scenario model](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | No data | [![Issues](https://img.shields.io/github/issues/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/issues)
[![PRs](https://img.shields.io/github/issues-pr/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/pulls)
No recent commits | N/A | [HopkinsIDD/COVIDScenarioPipeline](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | | -| [CU Metapopulation](https://github.com/epimodels/Metapopulation_MRSA) | No data | [![Issues](https://img.shields.io/github/issues/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/pulls)
No recent commits | N/A | [epimodels/Metapopulation_MRSA](https://github.com/epimodels/Metapopulation_MRSA) | | -| [epiworld: Fast Agent-Based Epi Models](https://github.com/UofUEpiBio/epiworld) | No data | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/pulls)
No recent commits | N/A | [UofUEpiBio/epiworld](https://github.com/UofUEpiBio/epiworld) | | -| [epiworld-forecasts: Automatic Disease Forecasting with epiworldR](https://github.com/EpiForeSITE/epiworld-forecasts) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/pulls)
No recent commits | N/A | [EpiForeSITE/epiworld-forecasts](https://github.com/EpiForeSITE/epiworld-forecasts) | | -| [epiworldpy: A python wrapper for epiworld](https://github.com/UofUEpiBio/epiworldpy) | No data | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/pulls)
No recent commits | N/A | [UofUEpiBio/epiworldpy](https://github.com/UofUEpiBio/epiworldpy) | | +| [Attention-Based Models for Snow-Water Equivalent Prediction](https://github.com/Krishuthapa/SWE-Attention) | Contributor | [![Issues](https://img.shields.io/github/issues/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/issues)
[![PRs](https://img.shields.io/github/issues-pr/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/pulls)
2024-12-12 ([`e95fe16`](https://github.com/Krishuthapa/SWE-Attention/commits)) | 2 | [Krishuthapa/SWE-Attention](https://github.com/Krishuthapa/SWE-Attention) | | +| [Bayesian Transmission Model](https://github.com/EpiForeSITE/bayesian-transmission) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/pulls)
2025-03-11 ([`f78a06a`](https://github.com/EpiForeSITE/bayesian-transmission/commits)) | 46 | [EpiForeSITE/bayesian-transmission](https://github.com/EpiForeSITE/bayesian-transmission) | | +| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls)
2025-05-09 ([`8e9bac5`](https://github.com/EpiForeSITE/branching_process//commits)) | 123 | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | +| [COVID-19 Jail Model](https://github.com/epimodels/COVID19-Jails) | Contributor | [![Issues](https://img.shields.io/github/issues/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/pulls)
2020-04-30 ([`561491b`](https://github.com/epimodels/COVID19-Jails/commits)) | 0 | [epimodels/COVID19-Jails](https://github.com/epimodels/COVID19-Jails) | | +| [COVID-19 NCAA Football](https://github.com/epimodels/inperson_sports) | Contributor | [![Issues](https://img.shields.io/github/issues/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/pulls)
2020-09-28 ([`9681971`](https://github.com/epimodels/inperson_sports/commits)) | 0 | [epimodels/inperson_sports](https://github.com/epimodels/inperson_sports) | | +| [Covid Scenario model](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | ContributorContributorContributorContributorContributor +5 more | [![Issues](https://img.shields.io/github/issues/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/issues)
[![PRs](https://img.shields.io/github/issues-pr/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/pulls)
2023-02-21 ([`0c6084b`](https://github.com/HopkinsIDD/COVIDScenarioPipeline/commits)) | 0 | [HopkinsIDD/COVIDScenarioPipeline](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | | +| [CU Metapopulation](https://github.com/epimodels/Metapopulation_MRSA) | ContributorContributor | [![Issues](https://img.shields.io/github/issues/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/Metapopulation_MRSA)](https://github.com/epimodels/Metapopulation_MRSA/pulls)
2022-07-14 ([`35bf356`](https://github.com/epimodels/Metapopulation_MRSA/commits)) | 0 | [epimodels/Metapopulation_MRSA](https://github.com/epimodels/Metapopulation_MRSA) | | +| [epiworld: Fast Agent-Based Epi Models](https://github.com/UofUEpiBio/epiworld) | ContributorContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/pulls)
2025-07-18 ([`f4ecac2`](https://github.com/UofUEpiBio/epiworld/commits)) | 30 | [UofUEpiBio/epiworld](https://github.com/UofUEpiBio/epiworld) | | +| [epiworld-forecasts: Automatic Disease Forecasting with epiworldR](https://github.com/EpiForeSITE/epiworld-forecasts) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/pulls)
2025-07-22 ([`e69d887`](https://github.com/EpiForeSITE/epiworld-forecasts/commits)) | 49 | [EpiForeSITE/epiworld-forecasts](https://github.com/EpiForeSITE/epiworld-forecasts) | | +| [epiworldpy: A python wrapper for epiworld](https://github.com/UofUEpiBio/epiworldpy) | Contributor | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/pulls)
2025-07-23 ([`c829a07`](https://github.com/UofUEpiBio/epiworldpy/commits)) | 5 | [UofUEpiBio/epiworldpy](https://github.com/UofUEpiBio/epiworldpy) | | | [GeoCovid](https://github.com/Fernandez-Lab-WSU/geocovid_app) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/pulls)
No recent commits | N/A | [Fernandez-Lab-WSU/geocovid_app](https://github.com/Fernandez-Lab-WSU/geocovid_app) | | -| [linkeR: Effortless Linked Views for Shiny Applications](https://github.com/EpiForeSITE/linkeR/) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//pulls)
No recent commits | N/A | [EpiForeSITE/linkeR](https://github.com/EpiForeSITE/linkeR/) | | -| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls)
No recent commits | N/A | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | -| [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | No data | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues)
[![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls)
No recent commits | N/A | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | | -| [PhenoMapper: an interactive toolbox for the visual exploration of phenomics data](https://github.com/tdavislab/PhenoMapper) | No data | [![Issues](https://img.shields.io/github/issues/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/issues)
[![PRs](https://img.shields.io/github/issues-pr/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/pulls)
No recent commits | N/A | [tdavislab/PhenoMapper](https://github.com/tdavislab/PhenoMapper) | | -| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | No data | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues)
[![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls)
No recent commits | N/A | [kingaa/pomp](https://github.com/kingaa/pomp) | | -| [Post-acute care model](https://github.com/mattrmaloney/covid-post-acute-care) | No data | [![Issues](https://img.shields.io/github/issues/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/issues)
[![PRs](https://img.shields.io/github/issues-pr/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/pulls)
No recent commits | N/A | [mattrmaloney/covid-post-acute-care](https://github.com/mattrmaloney/covid-post-acute-care) | | -| [quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/pulls)
No recent commits | N/A | [Fernandez-Lab-WSU/quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | | -| [rbranding](https://github.com/EpiForeSITE/branding-package) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls)
No recent commits | N/A | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | -| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/vaccine-equity-model) | No data | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/pulls)
No recent commits | N/A | [EpiForeSITE/vaccine-equity-model](https://github.com/EpiForeSITE/vaccine-equity-model) | | +| [linkeR: Effortless Linked Views for Shiny Applications](https://github.com/EpiForeSITE/linkeR/) | Contributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//pulls)
2025-07-28 ([`154105b`](https://github.com/EpiForeSITE/linkeR//commits)) | 40 | [EpiForeSITE/linkeR](https://github.com/EpiForeSITE/linkeR/) | | +| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls)
2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/multigroup-vaccine/commits)) | 128 | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | +| [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | Contributor | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues)
[![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls)
2024-10-10 ([`c21c84e`](https://github.com/madhobi/multitask_unit_and_days/commits)) | 1 | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | | +| [PhenoMapper: an interactive toolbox for the visual exploration of phenomics data](https://github.com/tdavislab/PhenoMapper) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/issues)
[![PRs](https://img.shields.io/github/issues-pr/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/pulls)
2024-04-22 ([`4cc2a66`](https://github.com/tdavislab/PhenoMapper/commits)) | 0 | [tdavislab/PhenoMapper](https://github.com/tdavislab/PhenoMapper) | | +| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | ContributorContributorContributorContributorContributor +4 more | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues)
[![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls)
2025-06-15 ([`23ce87e`](https://github.com/kingaa/pomp/commits)) | 51 | [kingaa/pomp](https://github.com/kingaa/pomp) | | +| [Post-acute care model](https://github.com/mattrmaloney/covid-post-acute-care) | No data | [![Issues](https://img.shields.io/github/issues/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/issues)
[![PRs](https://img.shields.io/github/issues-pr/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/pulls)
2020-06-13 ([`b60c0a6`](https://github.com/mattrmaloney/covid-post-acute-care/commits)) | 0 | [mattrmaloney/covid-post-acute-care](https://github.com/mattrmaloney/covid-post-acute-care) | | +| [quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/pulls)
2025-03-24 ([`83d2c4b`](https://github.com/Fernandez-Lab-WSU/quadkeyr/commits)) | 39 | [Fernandez-Lab-WSU/quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | | +| [rbranding](https://github.com/EpiForeSITE/branding-package) | ContributorContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls)
2025-07-28 ([`7d8ec44`](https://github.com/EpiForeSITE/branding-package/commits)) | 73 | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | +| [Multigroup Vaccine Model](https://github.com/EpiForeSITE/vaccine-equity-model) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/pulls)
2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/vaccine-equity-model/commits)) | 128 | [EpiForeSITE/vaccine-equity-model](https://github.com/EpiForeSITE/vaccine-equity-model) | | --- From b74aa6fe64745d7ae02fd17e81b2c461855bdbfa Mon Sep 17 00:00:00 2001 From: gvegayon <893619+gvegayon@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:46:41 +0000 Subject: [PATCH 5/7] Automatic project status update --- project_status.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project_status.md b/project_status.md index 40dab61..c2e4818 100644 --- a/project_status.md +++ b/project_status.md @@ -1,6 +1,6 @@ # Project Status Dashboard -Last updated: 2025-07-29 15:47:16.648494 (UTC) +Last updated: 2025-08-12 14:46:40.240719 (UTC) This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. @@ -8,7 +8,7 @@ This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. |---------|-------------|--------------------------|---------|------------| | [Attention-Based Models for Snow-Water Equivalent Prediction](https://github.com/Krishuthapa/SWE-Attention) | Contributor | [![Issues](https://img.shields.io/github/issues/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/issues)
[![PRs](https://img.shields.io/github/issues-pr/Krishuthapa/SWE-Attention)](https://github.com/Krishuthapa/SWE-Attention/pulls)
2024-12-12 ([`e95fe16`](https://github.com/Krishuthapa/SWE-Attention/commits)) | 2 | [Krishuthapa/SWE-Attention](https://github.com/Krishuthapa/SWE-Attention) | | | [Bayesian Transmission Model](https://github.com/EpiForeSITE/bayesian-transmission) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/bayesian-transmission)](https://github.com/EpiForeSITE/bayesian-transmission/pulls)
2025-03-11 ([`f78a06a`](https://github.com/EpiForeSITE/bayesian-transmission/commits)) | 46 | [EpiForeSITE/bayesian-transmission](https://github.com/EpiForeSITE/bayesian-transmission) | | -| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls)
2025-05-09 ([`8e9bac5`](https://github.com/EpiForeSITE/branching_process//commits)) | 123 | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | +| [Branching process outbreak simulator](https://github.com/EpiForeSITE/branching_process/) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branching_process)](https://github.com/EpiForeSITE/branching_process//pulls)
2025-05-09 ([`8e9bac5`](https://github.com/EpiForeSITE/branching_process//commits)) | 114 | [EpiForeSITE/branching_process](https://github.com/EpiForeSITE/branching_process/) | | | [COVID-19 Jail Model](https://github.com/epimodels/COVID19-Jails) | Contributor | [![Issues](https://img.shields.io/github/issues/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/COVID19-Jails)](https://github.com/epimodels/COVID19-Jails/pulls)
2020-04-30 ([`561491b`](https://github.com/epimodels/COVID19-Jails/commits)) | 0 | [epimodels/COVID19-Jails](https://github.com/epimodels/COVID19-Jails) | | | [COVID-19 NCAA Football](https://github.com/epimodels/inperson_sports) | Contributor | [![Issues](https://img.shields.io/github/issues/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/issues)
[![PRs](https://img.shields.io/github/issues-pr/epimodels/inperson_sports)](https://github.com/epimodels/inperson_sports/pulls)
2020-09-28 ([`9681971`](https://github.com/epimodels/inperson_sports/commits)) | 0 | [epimodels/inperson_sports](https://github.com/epimodels/inperson_sports) | | | [Covid Scenario model](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | ContributorContributorContributorContributorContributor +5 more | [![Issues](https://img.shields.io/github/issues/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/issues)
[![PRs](https://img.shields.io/github/issues-pr/HopkinsIDD/COVIDScenarioPipeline)](https://github.com/HopkinsIDD/COVIDScenarioPipeline/pulls)
2023-02-21 ([`0c6084b`](https://github.com/HopkinsIDD/COVIDScenarioPipeline/commits)) | 0 | [HopkinsIDD/COVIDScenarioPipeline](https://github.com/HopkinsIDD/COVIDScenarioPipeline) | | @@ -21,10 +21,10 @@ This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. | [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls)
2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/multigroup-vaccine/commits)) | 128 | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | | [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | Contributor | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues)
[![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls)
2024-10-10 ([`c21c84e`](https://github.com/madhobi/multitask_unit_and_days/commits)) | 1 | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | | | [PhenoMapper: an interactive toolbox for the visual exploration of phenomics data](https://github.com/tdavislab/PhenoMapper) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/issues)
[![PRs](https://img.shields.io/github/issues-pr/tdavislab/PhenoMapper)](https://github.com/tdavislab/PhenoMapper/pulls)
2024-04-22 ([`4cc2a66`](https://github.com/tdavislab/PhenoMapper/commits)) | 0 | [tdavislab/PhenoMapper](https://github.com/tdavislab/PhenoMapper) | | -| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | ContributorContributorContributorContributorContributor +4 more | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues)
[![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls)
2025-06-15 ([`23ce87e`](https://github.com/kingaa/pomp/commits)) | 51 | [kingaa/pomp](https://github.com/kingaa/pomp) | | +| [POMP (Aaron King’s tool, U. of Michigan)](https://github.com/kingaa/pomp) | ContributorContributorContributorContributorContributor +4 more | [![Issues](https://img.shields.io/github/issues/kingaa/pomp)](https://github.com/kingaa/pomp/issues)
[![PRs](https://img.shields.io/github/issues-pr/kingaa/pomp)](https://github.com/kingaa/pomp/pulls)
2025-08-01 ([`6279e55`](https://github.com/kingaa/pomp/commits)) | 52 | [kingaa/pomp](https://github.com/kingaa/pomp) | | | [Post-acute care model](https://github.com/mattrmaloney/covid-post-acute-care) | No data | [![Issues](https://img.shields.io/github/issues/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/issues)
[![PRs](https://img.shields.io/github/issues-pr/mattrmaloney/covid-post-acute-care)](https://github.com/mattrmaloney/covid-post-acute-care/pulls)
2020-06-13 ([`b60c0a6`](https://github.com/mattrmaloney/covid-post-acute-care/commits)) | 0 | [mattrmaloney/covid-post-acute-care](https://github.com/mattrmaloney/covid-post-acute-care) | | | [quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/quadkeyr)](https://github.com/Fernandez-Lab-WSU/quadkeyr/pulls)
2025-03-24 ([`83d2c4b`](https://github.com/Fernandez-Lab-WSU/quadkeyr/commits)) | 39 | [Fernandez-Lab-WSU/quadkeyr](https://github.com/Fernandez-Lab-WSU/quadkeyr) | | -| [rbranding](https://github.com/EpiForeSITE/branding-package) | ContributorContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls)
2025-07-28 ([`7d8ec44`](https://github.com/EpiForeSITE/branding-package/commits)) | 73 | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | +| [rbranding](https://github.com/EpiForeSITE/branding-package) | ContributorContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/branding-package)](https://github.com/EpiForeSITE/branding-package/pulls)
2025-07-31 ([`baae6a8`](https://github.com/EpiForeSITE/branding-package/commits)) | 75 | [EpiForeSITE/branding-package](https://github.com/EpiForeSITE/branding-package) | | | [Multigroup Vaccine Model](https://github.com/EpiForeSITE/vaccine-equity-model) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/vaccine-equity-model)](https://github.com/EpiForeSITE/vaccine-equity-model/pulls)
2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/vaccine-equity-model/commits)) | 128 | [EpiForeSITE/vaccine-equity-model](https://github.com/EpiForeSITE/vaccine-equity-model) | | --- From c7a8c2fc2046103f8adf3db432cd316a74573bdd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:50:13 +0000 Subject: [PATCH 6/7] Fix commit count logic to use search API and contributors stats for accurate totals Co-authored-by: gvegayon <893619+gvegayon@users.noreply.github.com> --- scripts/update_project_status.R | 44 +++++++++++++++++++++++++-------- 1 file changed, 34 insertions(+), 10 deletions(-) diff --git a/scripts/update_project_status.R b/scripts/update_project_status.R index da91e3e..bc3c08a 100755 --- a/scripts/update_project_status.R +++ b/scripts/update_project_status.R @@ -108,18 +108,42 @@ get_project_metrics <- function(owner, repo, token = NULL) { last_commit_date <- as.Date(substr(last_commit_date, 1, 10)) } - # Get total commits count (use repository stats instead of search API for better reliability) + # Get total commits count using multiple methods for better reliability total_commits <- -1 # -1 indicates API failure - # Try getting repo stats first (faster and more reliable) - stats_data <- github_api_call(paste0(base_url, "/stats/participation"), token) - if (!is.null(stats_data) && !is.null(stats_data$all)) { - total_commits <- sum(stats_data$all, na.rm = TRUE) + + # Method 1: Try search API first (gets total commits across entire repository history) + # Note: This requires authentication and has rate limits, but gives accurate total counts + search_url <- paste0("https://api.github.com/search/commits?q=repo:", owner, "/", repo) + search_data <- github_api_call(search_url, token) + if (!is.null(search_data) && !is.null(search_data$total_count)) { + total_commits <- search_data$total_count } else { - # Fallback to search API if stats not available - search_url <- paste0("https://api.github.com/search/commits?q=repo:", owner, "/", repo) - search_data <- github_api_call(search_url, token) - if (!is.null(search_data)) { - total_commits <- search_data$total_count + # Method 2: Try getting repository statistics for contributor activity + # This might give us a better estimate than participation stats + stats_url <- paste0(base_url, "/stats/contributors") + contributors_stats <- github_api_call(stats_url, token) + if (!is.null(contributors_stats) && length(contributors_stats) > 0) { + # Sum up all contributions from all contributors + total_commits <- sum(sapply(contributors_stats, function(contributor) { + if (!is.null(contributor$total)) contributor$total else 0 + }), na.rm = TRUE) + } else { + # Method 3: Fallback to participation stats (last 52 weeks only) + stats_data <- github_api_call(paste0(base_url, "/stats/participation"), token) + if (!is.null(stats_data) && !is.null(stats_data$all)) { + # This gives us commits from last 52 weeks only - not ideal but better than nothing + total_commits <- sum(stats_data$all, na.rm = TRUE) + } else { + # Method 4: Last resort - check if any commits exist + commits_page <- github_api_call(paste0(base_url, "/commits?per_page=1"), token) + if (!is.null(commits_page) && length(commits_page) > 0) { + # Repository has commits but we can't get count - return -1 to indicate API limitation + total_commits <- -1 + } else { + # No commits found + total_commits <- 0 + } + } } } From 3058fb49282a707ef57b795f1adc50c7c89533a4 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 Aug 2025 18:08:29 +0000 Subject: [PATCH 7/7] Automatic project status update --- project_status.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_status.md b/project_status.md index c2e4818..98cea0d 100644 --- a/project_status.md +++ b/project_status.md @@ -1,6 +1,6 @@ # Project Status Dashboard -Last updated: 2025-08-12 14:46:40.240719 (UTC) +Last updated: 2025-08-12 18:08:28.398259 (UTC) This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. @@ -16,7 +16,7 @@ This dashboard tracks 20 EpiForeSITE projects with GitHub repositories. | [epiworld: Fast Agent-Based Epi Models](https://github.com/UofUEpiBio/epiworld) | ContributorContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworld)](https://github.com/UofUEpiBio/epiworld/pulls)
2025-07-18 ([`f4ecac2`](https://github.com/UofUEpiBio/epiworld/commits)) | 30 | [UofUEpiBio/epiworld](https://github.com/UofUEpiBio/epiworld) | | | [epiworld-forecasts: Automatic Disease Forecasting with epiworldR](https://github.com/EpiForeSITE/epiworld-forecasts) | ContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/epiworld-forecasts)](https://github.com/EpiForeSITE/epiworld-forecasts/pulls)
2025-07-22 ([`e69d887`](https://github.com/EpiForeSITE/epiworld-forecasts/commits)) | 49 | [EpiForeSITE/epiworld-forecasts](https://github.com/EpiForeSITE/epiworld-forecasts) | | | [epiworldpy: A python wrapper for epiworld](https://github.com/UofUEpiBio/epiworldpy) | Contributor | [![Issues](https://img.shields.io/github/issues/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/issues)
[![PRs](https://img.shields.io/github/issues-pr/UofUEpiBio/epiworldpy)](https://github.com/UofUEpiBio/epiworldpy/pulls)
2025-07-23 ([`c829a07`](https://github.com/UofUEpiBio/epiworldpy/commits)) | 5 | [UofUEpiBio/epiworldpy](https://github.com/UofUEpiBio/epiworldpy) | | -| [GeoCovid](https://github.com/Fernandez-Lab-WSU/geocovid_app) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/pulls)
No recent commits | N/A | [Fernandez-Lab-WSU/geocovid_app](https://github.com/Fernandez-Lab-WSU/geocovid_app) | | +| [GeoCovid](https://github.com/Fernandez-Lab-WSU/geocovid_app) | No data | [![Issues](https://img.shields.io/github/issues/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/issues)
[![PRs](https://img.shields.io/github/issues-pr/Fernandez-Lab-WSU/geocovid_app)](https://github.com/Fernandez-Lab-WSU/geocovid_app/pulls)
No recent commits | 0 | [Fernandez-Lab-WSU/geocovid_app](https://github.com/Fernandez-Lab-WSU/geocovid_app) | | | [linkeR: Effortless Linked Views for Shiny Applications](https://github.com/EpiForeSITE/linkeR/) | Contributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/linkeR)](https://github.com/EpiForeSITE/linkeR//pulls)
2025-07-28 ([`154105b`](https://github.com/EpiForeSITE/linkeR//commits)) | 40 | [EpiForeSITE/linkeR](https://github.com/EpiForeSITE/linkeR/) | | | [Multigroup Vaccine Model](https://github.com/EpiForeSITE/multigroup-vaccine) | ContributorContributorContributorContributor | [![Issues](https://img.shields.io/github/issues/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/issues)
[![PRs](https://img.shields.io/github/issues-pr/EpiForeSITE/multigroup-vaccine)](https://github.com/EpiForeSITE/multigroup-vaccine/pulls)
2025-07-08 ([`ac3e3a4`](https://github.com/EpiForeSITE/multigroup-vaccine/commits)) | 128 | [EpiForeSITE/multigroup-vaccine](https://github.com/EpiForeSITE/multigroup-vaccine) | | | [Multitask Model to Forecast Patient's Next Unit and Remaining Length of Stay](https://github.com/madhobi/multitask_unit_and_days) | Contributor | [![Issues](https://img.shields.io/github/issues/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/issues)
[![PRs](https://img.shields.io/github/issues-pr/madhobi/multitask_unit_and_days)](https://github.com/madhobi/multitask_unit_and_days/pulls)
2024-10-10 ([`c21c84e`](https://github.com/madhobi/multitask_unit_and_days/commits)) | 1 | [madhobi/multitask_unit_and_days](https://github.com/madhobi/multitask_unit_and_days) | |