-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated druggability json for gx validation and commented out the val…
…idation itself so I can run adt without problems and then update gx validation
- Loading branch information
Beatriz Saldana
committed
Dec 4, 2024
1 parent
121f6ff
commit d227ee4
Showing
4 changed files
with
47 additions
and
114 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
60 changes: 27 additions & 33 deletions
60
src/agoradatatools/great_expectations/gx/json_schemas/gene_info/druggability.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,34 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"$id": "http://example.com/example.json", | ||
"type": ["array", "null"], | ||
"default": [], | ||
"title": "Druggability Schema", | ||
"items": { | ||
"type": "object", | ||
"default": {}, | ||
"properties": { | ||
"sm_druggability_bucket": { | ||
"type": "number" | ||
}, | ||
"safety_bucket": { | ||
"type": "number" | ||
}, | ||
"abability_bucket": { | ||
"type": "number" | ||
}, | ||
"pharos_class": { | ||
"type": ["string", "null"] | ||
}, | ||
"classification": { | ||
"type": "object", | ||
"default": {}, | ||
"title": "Root Schema", | ||
"required": [ | ||
"pharos_class" | ||
], | ||
"properties": { | ||
"pharos_class": { | ||
"type": "array", | ||
"default": [], | ||
"title": "The pharos_class Schema", | ||
"items": { | ||
"type": "string", | ||
"minLength": 22, | ||
"maxLength": 1000 | ||
"default": "", | ||
"title": "A Schema", | ||
"examples": [ | ||
"Tchem" | ||
] | ||
}, | ||
"safety_bucket_definition": { | ||
"type": "string", | ||
"minLength": 50, | ||
"maxLength": 1000 | ||
}, | ||
"abability_bucket_definition": { | ||
"type": "string", | ||
"minLength": 44, | ||
"maxLength": 1000 | ||
} | ||
"examples": [ | ||
[ | ||
"Tchem"] | ||
] | ||
} | ||
} | ||
}, | ||
"examples": [{ | ||
"pharos_class": [ | ||
"Tchem" | ||
] | ||
}] | ||
} |