From 631fbd3295b7f8de7c534bde032f7cd4e5742853 Mon Sep 17 00:00:00 2001 From: Victor Lin Date: Thu, 12 Mar 2026 16:35:08 -0700 Subject: [PATCH] Fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c50aefc..d4b1874 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Scripts for supporting workflow automation that don’t really belong in any of - [notify-on-diff](scripts/notify-on-diff) - Send Slack message with diff of a local file and an S3 object - [notify-on-job-fail](scripts/notify-on-job-fail) - Send Slack message with details about failed workflow job on GitHub Actions and/or AWS Batch - [notify-on-job-start](scripts/notify-on-job-start) - Send Slack message with details about workflow job on GitHub Actions and/or AWS Batch -- [notify-on-record-change](scripts/notify-on-recod-change) - Send Slack message with details about line count changes for a file compared to an S3 object's metadata `recordcount`. +- [notify-on-record-change](scripts/notify-on-record-change) - Send Slack message with details about line count changes for a file compared to an S3 object's metadata `recordcount`. If the S3 object's metadata does not have `recordcount`, then will attempt to download S3 object to count lines locally, which only supports `xz` compressed S3 objects. - [notify-slack](scripts/notify-slack) - Send message or file to Slack - [s3-object-exists](scripts/s3-object-exists) - Used to prevent 404 errors during S3 file comparisons in the notify-* scripts @@ -114,7 +114,7 @@ Potential Nextstrain CLI scripts - [upload-to-s3](scripts/upload-to-s3) - Upload file to AWS S3 bucket with compression based on file extension in S3 URL. Skips upload if the local file's hash is identical to the S3 object's metadata `sha256sum`. Adds the following user defined metadata to uploaded S3 object: - - `sha256sum` - hash of the file generated by [sha256sum](sha256sum) + - `sha256sum` - hash of the file generated by [sha256sum](scripts/sha256sum) - `recordcount` - the line count of the file - [download-from-s3](scripts/download-from-s3) - Download file from AWS S3 bucket with decompression based on file extension in S3 URL. Skips download if the local file already exists and has a hash identical to the S3 object's metadata `sha256sum`.