Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
ExclusionCriteria is now null by default and does not get serialized.
Browse files Browse the repository at this point in the history
InclusionCriteria now has the correct array of array structure to represent CNF
TermCodeMapping.json renamed to codex-term-code-mapping.json
Added test cases for corner cases like SOFA Score
  • Loading branch information
geloro94 committed Jun 14, 2021
1 parent dc125c1 commit efefd44
Show file tree
Hide file tree
Showing 4 changed files with 18,703 additions and 24,522 deletions.
2 changes: 1 addition & 1 deletion StructuredQuery.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class StructuredQuery:
def __init__(self):
self.version = ""
self.inclusionCriteria = []
self.exclusionCriteria = []
self.exclusionCriteria = None

def to_json(self):
return json.dumps(self, default=lambda o: del_none(
Expand Down
Loading

0 comments on commit efefd44

Please sign in to comment.