-
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 #67 from c3g/develop
Release v0.3.0
- Loading branch information
Showing
43 changed files
with
798 additions
and
78 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
18 changes: 18 additions & 0 deletions
18
chord_metadata_service/chord/migrations/0008_dataset_version.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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.2.9 on 2020-02-17 21:48 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('chord', '0007_auto_20200129_1537'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='dataset', | ||
name='version', | ||
field=models.CharField(blank=True, default='version_2020-02-17 16:47:59.425036', help_text='A release point for the dataset when applicable.', max_length=200), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
chord_metadata_service/chord/migrations/0009_auto_20200218_1615.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 2.2.9 on 2020-02-18 21:15 | ||
|
||
import chord_metadata_service.chord.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('chord', '0008_dataset_version'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='dataset', | ||
name='version', | ||
field=models.CharField(blank=True, default=chord_metadata_service.chord.models.version_default, help_text='A release point for the dataset when applicable.', max_length=200), | ||
), | ||
] |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
SEARCH_SUCCESS = { | ||
"_shards": { | ||
"failed": 0, | ||
"skipped": 0, | ||
"successful": 1, | ||
"total": 1 | ||
}, | ||
"hits": { | ||
"hits": [ | ||
{ | ||
"_id": "Individual|patient:1", | ||
"_index": "fhir_metadata", | ||
"_score": 6.334576, | ||
"_source": { | ||
"birthDate": "1994-09-11", | ||
"extension": [ | ||
{ | ||
"url": "http://ga4gh.org/fhir/phenopackets/StructureDefinition/individual-karyotypic-sex", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"code": "XX", | ||
"display": "XX", | ||
"system": "http://ga4gh.org/fhir/phenopackets/CodeSystem/karyotypic-sex" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"url": "http://ga4gh.org/fhir/phenopackets/StructureDefinition/individual-taxonomy", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"code": "FAKE_CODE", | ||
"display": "Homo sapiens" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"gender": "FEMALE", | ||
"id": "patient:1", | ||
"resourceType": "Patient" | ||
}, | ||
"_type": "_doc" | ||
} | ||
], | ||
"max_score": 6.334576, | ||
"total": { | ||
"relation": "eq", | ||
"value": 1 | ||
} | ||
}, | ||
"timed_out": False, | ||
"took": 5 | ||
} |
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
Oops, something went wrong.