blob: 5c962d1d9cf6a8d37c8eda26c59cf78481dd6309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
$base: http://biohackathon.org/bh20-seq-schema
$namespaces:
sch: https://schema.org/
efo: http://www.ebi.ac.uk/efo/
obo: http://purl.obolibrary.org/obo/
$graph:
- name: hostSchema
type: record
fields:
host_species:
type: string
jsonldPredicate:
_id: http://www.ebi.ac.uk/efo/EFO_0000532
host_id: string
host_common_name: string?
host_sex: string?
host_age: int?
host_age_unit: string?
host_health_status: string?
host_treatment:
type: string?
jsonldPredicate:
_id: http://www.ebi.ac.uk/efo/EFO_0000727
additional_host_information: string?
- name: sampleSchema
type: record
fields:
collector_name: string
collecting_institution: string
specimen_source: string?
collection_date: string?
collection_location:
type: string?
jsonldPredicate:
_id: https://schema.org/fromLocation
sample_storage_conditions: string?
additional_collection_information: string?
- name: virusSchema
type: record
fields:
virus_species: string?
virus_strain: string?
- name: technologySchema
type: record
fields:
sample_sequencing_technology:
type: string
jsonldPredicate:
_id: http://www.ebi.ac.uk/efo/EFO_0000532
sequence_assembly_method:
type: string?
jsonldPredicate:
_id: http://www.ebi.ac.uk/efo/EFO_0002699
sequencing_coverage:
type: string?
jsonldPredicate:
_id: http://purl.obolibrary.org/obo/FLU_0000848
- name: submitterSchema
type: record
fields:
submitter_name: string
submitter_address: string?
originating_lab: string
lab_address: string?
provider_sample_id: string?
submitter_sample_id: string?
authors: string?
submitter_id: string?
- name: MainSchema
type: record
documentRoot: true
fields:
host: hostSchema
sample: sampleSchema
virus: virusSchema?
technology: technologySchema
submitter: submitterSchema
sequencefile:
doc: The subject (eg the fasta/fastq file) that this metadata describes
type: string?
jsonldPredicate:
_id: "@id"
_type: "@id"
|