-
Notifications
You must be signed in to change notification settings - Fork 6
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 #129 from c3g/develop
Version 0.7.0
- Loading branch information
Showing
153 changed files
with
6,999 additions
and
4,477 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include chord_metadata_service/chord/workflows/phenopackets_json.wdl | ||
include chord_metadata_service/chord/workflows/*.wdl | ||
include chord_metadata_service/chord/tests/*.json | ||
include chord_metadata_service/dats/* | ||
include chord_metadata_service/package.cfg |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
|
||
class ChordConfig(AppConfig): | ||
name = 'chord' | ||
name = 'chord_metadata_service.chord' |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from chord_metadata_service.experiments.search_schemas import EXPERIMENT_SEARCH_SCHEMA | ||
from chord_metadata_service.phenopackets.search_schemas import PHENOPACKET_SEARCH_SCHEMA | ||
from chord_metadata_service.mcode.schemas import MCODE_SCHEMA | ||
|
||
__all__ = [ | ||
"DATA_TYPE_EXPERIMENT", | ||
"DATA_TYPE_PHENOPACKET", | ||
"DATA_TYPE_MCODEPACKET", | ||
"DATA_TYPES", | ||
] | ||
|
||
DATA_TYPE_EXPERIMENT = "experiment" | ||
DATA_TYPE_PHENOPACKET = "phenopacket" | ||
DATA_TYPE_MCODEPACKET = "mcodepacket" | ||
|
||
DATA_TYPES = { | ||
DATA_TYPE_EXPERIMENT: { | ||
"schema": EXPERIMENT_SEARCH_SCHEMA, | ||
"metadata_schema": { | ||
"type": "object", # TODO | ||
}, | ||
}, | ||
DATA_TYPE_PHENOPACKET: { | ||
"schema": PHENOPACKET_SEARCH_SCHEMA, | ||
"metadata_schema": { | ||
"type": "object", # TODO | ||
} | ||
}, | ||
DATA_TYPE_MCODEPACKET: { | ||
"schema": MCODE_SCHEMA, | ||
"metadata_schema": { | ||
"type": "object", # TODO | ||
} | ||
} | ||
} |
Oops, something went wrong.