-
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 #359 from bento-platform/hotfix/log-failed-biosample
chore: log not-found biosamples during experiments ingestion
- Loading branch information
Showing
5 changed files
with
123 additions
and
11 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
78 changes: 78 additions & 0 deletions
78
chord_metadata_service/chord/tests/example_experiment_bad_biosample.json
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,78 @@ | ||
{ | ||
"experiments": [ | ||
{ | ||
"id": "experiment:1", | ||
"biosample": "sample1ohno!", | ||
"study_type": "Epigenomics", | ||
"experiment_type": "Other", | ||
"experiment_ontology": [ | ||
{ | ||
"id": "http://www.ebi.ac.uk/efo/EFO_0002692", | ||
"label": "ChIP-seq" | ||
} | ||
], | ||
"library_strategy": "ChIP-Seq", | ||
"library_source": "Genomic", | ||
"library_selection": "Random", | ||
"library_layout": "Single", | ||
"extraction_protocol": "NGS", | ||
"molecule": "genomic DNA", | ||
"molecule_ontology": [ | ||
{ | ||
"id": "SO:0000991", | ||
"label": "genomic DNA" | ||
} | ||
], | ||
"experiment_results": [ | ||
{ | ||
"identifier": "sample1_01", | ||
"description": "test", | ||
"filename": "sample1_01.vcf.gz", | ||
"file_format": "VCF", | ||
"data_output_type": "Derived data", | ||
"usage": "Visualized", | ||
"creation_date": "01-09-2021", | ||
"created_by": "Admin", | ||
"extra_properties": { | ||
"test": "test" | ||
} | ||
}, | ||
{ | ||
"identifier": "sample1_02", | ||
"description": "test2", | ||
"filename": "sample1_02.vcf.gz", | ||
"file_format": "CRAM", | ||
"data_output_type": "Raw data", | ||
"usage": "Visualized", | ||
"creation_date": "01-09-2021", | ||
"created_by": "Admin", | ||
"extra_properties": { | ||
"test": "test" | ||
} | ||
} | ||
], | ||
"instrument": { | ||
"identifier": "instrument:01", | ||
"platform": "Illumina", | ||
"description": "Test description", | ||
"model": "Illumina HiSeq 4000", | ||
"extra_properties": { | ||
"date": "2021-06-21" | ||
} | ||
}, | ||
"extra_properties": { | ||
"date_uploaded": "2021-03-16" | ||
} | ||
} | ||
], | ||
"resources": [ | ||
{ | ||
"name": "Sequence types and features ontology", | ||
"version": "2021-02-16", | ||
"namespace_prefix": "SO", | ||
"id": "SO:2021-02-16", | ||
"iri_prefix": "http://purl.obolibrary.org/obo/so.owl#", | ||
"url": "http://purl.obolibrary.org/obo/so.owl" | ||
} | ||
] | ||
} |
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,4 +1,4 @@ | ||
[package] | ||
name = katsu | ||
version = 2.15.0 | ||
version = 2.15.1 | ||
authors = Ksenia Zaytseva, David Lougheed, Simon Chénard, Romain Grégoire, Paul Pillot, Son Chau |