You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added feature to allow for conversion of these premade mappings provided by SNOMED into SSSOM format. (WIP)
General updates
- cli.py: Reorganized SSSOM_READ_FORMATS: Top half are plain data formats, and bottom half are special-case formats. Both halves of the list are alphabetically sorted.
Temp updates
- Changed some relative imports to absolute imports, in order to speed up development and make debugging easier. It is possible that this could be a good permanent change too, though.
# Description: The conceptual category to which the subject belongs to. This can be a string denoting the category or a term from a controlled vocabulary.
592
+
# Example: UBERON:0001062 (The CURIE of the Uberon term for "anatomical entity".)
593
+
# Example: biolink:Gene (The CURIE of the biolink class for genes.)
594
+
# - predicate_modifier
595
+
# Description: A modifier for negating the prediate. See https://github.com/mapping-commons/sssom/issues/40 for discussion
596
+
# Range: PredicateModifierEnum: (joe: only lists 'Not' as an option)
597
+
# Example: Not Negates the predicate, see documentation of predicate_modifier_enum
598
+
# - object_category
599
+
# Description: The conceptual category to which the subject belongs to. This can be a string denoting the category or a term from a controlled vocabulary.
600
+
# Example: UBERON:0001062 (The CURIE of the Uberon term for "anatomical entity".)
601
+
# Example: biolink:Gene (The CURIE of the biolink class for genes.)
602
+
603
+
# TODO: Make GH Issue: Suggest JSON instead of pipe-delimiated. Also it doesn't say what should be the delimiter
604
+
# ...between key/val pairs (which I'm guessing is either = or :).
605
+
# - other: Description: Pipe separated list of key value pairs for properties not part of the SSSOM spec.
606
+
# Can be used to encode additional provenance data.
607
+
# - comment: Description: Free text field containing either curator notes or text generated by tool providing
608
+
# additional informative information.
609
+
610
+
# - author_id: can this be "SNOMED"?
611
+
# - author_label: can this be "SNOMED"?
612
+
# - reviewer_id: can this be "SNOMED"?
613
+
# - reviewer_label: can this be "SNOMED"?
614
+
# - creator_id: can this be "SNOMED"?
615
+
# - creator_label: can this be "SNOMED"?
616
+
# - license: Is this something that can be determined?
617
+
# - subject_source: URL of some official page for SNOMED version used?
618
+
# - subject_source_version: Is this knowable?
619
+
# - object_source: URL of some official page for ICD10CM version used?
620
+
# - object_source_version: would this be "10CM" as in "ICD10CM"? Or something else? Or nothing?
621
+
# - mapping_provider: can this be "SNOMED"?
622
+
# - mapping_cardinality: Could I determine 1:1 or 1:many or many:1 based on:
623
+
# mapGroup, mapPriority, mapRule, mapAdvice?
624
+
# - match_term_type: What is this?
625
+
# - see_also: Should this be a URL to the SNOMED term?
0 commit comments