From ff025060c55bf4f357a44f45cfd9288fa9c6a754 Mon Sep 17 00:00:00 2001 From: Alon Greyber Date: Sat, 30 Oct 2021 17:00:48 -0400 Subject: [PATCH] Review changes --- docs/COMPONENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/COMPONENTS.md b/docs/COMPONENTS.md index f1d5d198..6d60c55d 100644 --- a/docs/COMPONENTS.md +++ b/docs/COMPONENTS.md @@ -3,7 +3,7 @@ ## Entrypoints * `/query` (`server.py`) - synchronous TRAPI endpoint - Does a little [workflow]() stuff, but mostly calls `lookup()` + Does a little workflow stuff, but mostly calls `lookup()` * `/asyncquery` (`server.py`) - asynchronous TRAPI endpoint 1. Returns immediately 2. Calls `lookup()` @@ -30,7 +30,7 @@ * `storage.py` defines interfaces for accessing and manipulating Redis storage * `trapi_openapi.py` defines the TRAPI subclass of FastAPI to add the common TRAPI elements to the OpenAPI schema * `trapi.py` defines utilities for TRAPI messages, including normalizing and merging -* `traversal.py` **probably obsolete** +* `traversal.py` contains code for verifying that a query graph can be solved with the KPs available (traversable) * `util.py` :\ a whole bunch of random stuff, some of it important ## Important functions