|
20 | 20 | PREFIX = "msigdb" |
21 | 21 | BASE_URL = "https://data.broadinstitute.org/gsea-msigdb/msigdb/release" |
22 | 22 |
|
23 | | -CATEGORY_CODE = TypeDef.default(PREFIX, "category_code", name="category code", is_metadata_tag=True) |
| 23 | +CATEGORY_CODE = TypeDef.default( |
| 24 | + PREFIX, "category_code", name="category code", predicate_type="annotation" |
| 25 | +) |
24 | 26 | SUB_CATEGORY_CODE = TypeDef.default( |
25 | | - PREFIX, "sub_category_code", name="sub-category code", is_metadata_tag=True |
| 27 | + PREFIX, "sub_category_code", name="sub-category code", predicate_type="annotation" |
| 28 | +) |
| 29 | +CONTRIBUTOR = TypeDef.default( |
| 30 | + PREFIX, "contributor", name="contributor", predicate_type="annotation" |
| 31 | +) |
| 32 | +EXACT_SOURCE = TypeDef.default( |
| 33 | + PREFIX, "exact_source", name="exact source", predicate_type="annotation" |
26 | 34 | ) |
27 | | -CONTRIBUTOR = TypeDef.default(PREFIX, "contributor", name="contributor", is_metadata_tag=True) |
28 | | -EXACT_SOURCE = TypeDef.default(PREFIX, "exact_source", name="exact source", is_metadata_tag=True) |
29 | 35 | EXTERNAL_DETAILS_URL = TypeDef.default( |
30 | | - PREFIX, "external_details_url", name="external details URL", is_metadata_tag=True |
| 36 | + PREFIX, "external_details_url", name="external details URL", predicate_type="annotation" |
31 | 37 | ) |
32 | 38 |
|
33 | 39 | PROPERTIES = [ |
|
0 commit comments