generated from frehburg/TemplateForPythonProjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from BIH-CEI/150-bug-tuple-list-fields
150 bug tuple list fields
- Loading branch information
Showing
21 changed files
with
768 additions
and
398 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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,6 +1,5 @@ | ||
"""Selection of rare disease specific data models""" | ||
from .rarelink_datamodel import RARELINK_DATA_MODEL | ||
from .erdri_cds import ERDRI_CDS | ||
from phenopacket_mapper.utils.parsing.parse_data_type import parse_data_type | ||
|
||
__all__ = ["RARELINK_DATA_MODEL", "ERDRI_CDS", "parse_data_type"] | ||
__all__ = ["ERDRI_CDS", "parse_data_type"] |
16 changes: 8 additions & 8 deletions
16
src/phenopacket_mapper/data_standards/data_models/erdri_cds.py
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,9 +1,9 @@ | ||
from phenopacket_mapper.data_standards.data_model import DataModel, DataField | ||
|
||
ERDRI_CDS = DataModel( | ||
data_model_name="ERDRI_CDS", | ||
resources=[], | ||
fields=[ | ||
# TODO: Implement fields | ||
] | ||
) | ||
ERDRI_CDS = None | ||
# ERDRI_CDS = DataModel( | ||
# data_model_name="ERDRI_CDS", | ||
# resources=[], | ||
# fields=[ | ||
# # TODO: Implement fields | ||
# ] | ||
# ) |
87 changes: 0 additions & 87 deletions
87
src/phenopacket_mapper/data_standards/data_models/rarelink_datamodel.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.