From 428c50de7b1300b637ec74db1812413593344c9e Mon Sep 17 00:00:00 2001 From: Draga Doncila Date: Fri, 15 Dec 2023 11:29:38 +1100 Subject: [PATCH] small grammar fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 700fba1e..1e84692c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The `traccuracy` library has three main components: loaders, matchers, and metri Loaders load tracking graphs from other formats, such as the CTC format, into a [TrackingGraph](https://traccuracy.readthedocs.io/en/latest/autoapi/traccuracy/index.html#traccuracy.TrackingGraph) object. A TrackingGraph is a spatiotemporal graph. Nodes represent a single cell in a given time point, and are annotated with a time and a location. -Edges point forward in time from a node representing a cell in time point `t` to the same cell or its daughter in frames `t+1` (or beyond, to represent gap closing). +Edges point forward in time from a node representing a cell in time point `t` to the same cell or its daughter in frame `t+1` (or beyond, to represent gap-closing). To load TrackingGraphs from a custom format, you will likely need to implement a loader: see documentation [here](https://traccuracy.readthedocs.io/en/latest/autoapi/traccuracy/loaders/index.html#module-traccuracy.loaders) for more information.