# ============================================================================== # Polyphenol Estimation Pipeline - Shiny Application # ============================================================================== # # PIPELINE DEVELOPED BY: # Stephanie M.G. Wilson # University of California, Davis # Contact: smgwilson@ucdavis.edu # Repository: https://github.com/SWi1/polyphenol_pipeline/ # License: MIT # # SHINY APP DEVELOPED BY: # Richard Stoker # United States Department of Agriculture - Agricultural Research Service # Contact: Richard.Stoker@usda.gov # License: CC0 (Public Domain) # # DESCRIPTION: # Interactive web application for the Polyphenol Estimation Pipeline. # Provides a user-friendly interface for estimating dietary polyphenol # intake from ASA24 or NHANES diet recall data. # # VERSION: 0.1 Alpha # DATE: November 2025 # # ============================================================================== # Load application components source("global.R") source("ui.R") source("server.R") # Run the application shinyApp(ui = ui, server = server)