[tuflow] Add workbook data dictionary for POMM peak exports#62
Merged
Githubcopilot111 merged 13 commits intomainfrom Nov 7, 2025
Merged
Conversation
|
@codex review |
1 similar comment
|
@codex review |
|
To use Codex here, create a Codex account and connect to github. |
1 similar comment
|
To use Codex here, create a Codex account and connect to github. |
…o-report-medians-and-means [tuflow] Split POMM mean and median report outputs
…orkflows-to-report-medians-and-means Revert "[tuflow] Split POMM mean and median report outputs"
…or-median-and-mean-reporting [tuflow] Separate POMM peak report outputs chain of merges to come
…p-dur.py-script [scripts] Add mean peak workflow
…t-with-column-descriptions
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Testing
import sys
from pathlib import Path
sys.path.append('.')
import pandas as pd
from ryan_library.scripts.pomm_utils import aggregated_from_paths, save_peak_report_median
base = Path('tests/test_data/tuflow/tutorials/Module_09/results')
df = aggregated_from_paths(paths=[base])
if df.empty:
print('Aggregated dataframe is empty')
else:
save_peak_report_median(
aggregated_df=df,
script_directory=Path('.'),
timestamp='20250101-1200',
include_pomm=True,
)
print('Workbook generated')
PY
https://chatgpt.com/codex/tasks/task_e_69099e6987ac832eb9d1d6dd36bae24b