-
Notifications
You must be signed in to change notification settings - Fork 2
/
Data.yaml
867 lines (805 loc) · 23.8 KB
/
Data.yaml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
# Important editor notes
# - Here [mappings](https://linkml.io/linkml/schemas/uris-and-mappings.html#mappings) indicate closely related templates in other data models
# - Here `extensions.suggests` are used to track the relationship between templates and their intended application to assay data types
# - `abstract` means the template is not meant to be used for annotation, it's just there for others to inherit props from
classes:
############################################################
# Assay Data / Sequencing
############################################################
BiologicalAssayDataTemplate:
is_a: Template
abstract: true
description: >
A template defining basic metadata on deposited data artifacts (i.e. files) from experimental assays involving biosamples.
This is an abstract template; "real" template subclasses define additional properties appropriate for the type of data file (e.g. imaging vs sequencing).
slots:
- Component
- Filename
- fileFormat
- resourceType # should be constrained to data resource types but we can't do this yet
- dataType
- dataSubtype
- assay # platform added at a later level, see https://github.com/nf-osi/nf-metadata-dictionary/issues/319
- individualID # specimenID, aliquotID etc. are added at a later level since they don't make sense for some assay types such as behavioral assays
- species # one day will these will be submitted separately
- sex
- age
- ageUnit
- diagnosis
- nf1Genotype
- nf2Genotype
- tumorType
- modelSystemName
- organ
- comments
NonBiologicalAssayDataTemplate:
is_a: Template
abstract: true
description: >
Describes data artifacts (i.e. files) from an experimental/physical-sciences assay
where input specimens are more at the level of synthesized molecules or inorganic materials.
notes:
- Name of this base abstraction is not great, may need to revise.
slots:
- Component
- Filename
- fileFormat
- resourceType
- dataType
- dataSubtype
- assay
#####################################################
# Biological Assay Data / Sequencing / Raw
#####################################################
GeneticsAssayTemplate:
is_a: BiologicalAssayDataTemplate
abstract: true
description: >
Template for relatively raw data of RNA/DNA structure and expression.
This is an abstract template encapsulating data from low-throughput to high-throughput assays,
sequencing-based or non-sequencing based (e.g. microarrays, optical genome mapping).
In practice, data are more specifically typed and matched to one of the templates below.
notes:
- http://purl.obolibrary.org/obo/GECKO_0000032
slots:
- parentSpecimenID
- specimenID
- aliquotID
- tumorType
- platform
- nucleicAcidSource
- specimenPreparationMethod
annotations:
requiresComponent: ''
required: false
BulkSequencingAssayTemplate:
is_a: GeneticsAssayTemplate
description: General template for raw (level 1) RNA/DNA data, i.e. sequence data from a sequencing assay.
slots:
- specimenType
- runType
- libraryStrand
- libraryPrep
- libraryPreparationMethod
- readPair
- readLength
- readDepth
- targetDepth
- batchID
annotations:
requiresComponent: ''
required: false
match:
assay:
- ISO-seq
- miRNA-seq
- NOMe-seq
- next-generation sequencing
- ribo-seq
- scCGI-seq
- Sanger sequencing
- T cell receptor repertoire sequencing
ScSequencingAssayTemplate:
is_a: GeneticsAssayTemplate
description: General template for raw RNA/DNA data, i.e. sequence data from a sequencing assay.
slots:
- cellType
- isCellLine
- cellID
- dissociationMethod
- runType
- libraryStrand
- libraryKitID
- libraryPrep
- libraryPreparationMethod
- readPair
- readLength
- readDepth
- targetDepth
- batchID
- auxiliaryAsset
annotations:
requiresComponent: ''
required: false
match:
assay:
- ISO-seq
- miRNA-seq
- NOMe-seq
- next-generation sequencing
- ribo-seq
- scCGI-seq
- Sanger sequencing
- T cell receptor repertoire sequencing
GenomicsAssayTemplate:
is_a: BulkSequencingAssayTemplate
description: Alias to BulkSequencingAssayTemplate, use for sequence data on a large scale when there is no template available that is more specific.
notes:
- It's possible that not all raw genomics data equates to sequencing output.
slots:
annotations:
requiresComponent: ''
required: false
GenomicsAssayTemplateExtended:
is_a: GenomicsAssayTemplate
description: Genomics assay template but with additional experiment data.
slots:
- experimentalCondition
- experimentalTimepoint
- timepointUnit
- genePerturbed
- genePerturbationTechnology
- genePerturbationType
- comments
annotations:
requiresComponent: ''
required: false
RNASeqTemplate:
is_a: BulkSequencingAssayTemplate
description: Template for describing raw data from (bulk) RNA-sequencing
slots:
- genePerturbed
- genePerturbationType
- genePerturbationTechnology
- experimentalCondition
annotations:
requiresComponent: ''
required: false
match:
assay:
- RNA-seq
- lncRNA-seq
dataType:
- SequenceReads
close_mappings:
- htan:BulkRNA-seqLevel1
ScRNASeqTemplate:
is_a: ScSequencingAssayTemplate
description: Template for describing raw data from single-cell RNA-seq.
slots:
- genePerturbed
- genePerturbationType
- genePerturbationTechnology
- experimentalCondition
annotations:
requiresComponent: ''
required: false
match:
assay:
- single-cell RNA-seq
dataType:
- geneExpression
#Saving this for later/more time to think through
#GeoMXSpatialTranscriptomicsTemplate:
#is_a: GeneticsAssayTemplate
#description: Files contain raw data output from the NanoString GeoMx DSP Pipeline. These can include RCC or DCC Files.
#source: https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.csv
#slots:
#- libraryPrep
#- libraryPreparationMethod
#annotations:
# requiresComponent: ''
# required: false
# match:
# assay:
# - spatial transcriptomics
# dataType:
# - SequenceReads
#close_mappings:
#- htan:NanoStringGeoMxDSPSpatialTranscriptomicsLevel1
PdxGenomicsAssayTemplate:
is_a: GenomicsAssayTemplate
description: Raw genomics data from patient-derived xenograft (PDX) experiment, with additional PDX-relevant metadata.
slots:
- transplantationType
- transplantationRecipientSpecies
- transplantationRecipientTissue
- modelSystemName
- experimentalCondition
- experimentalTimepoint
- timepointUnit
annotations:
requiresComponent: ''
required: false
WGSTemplate:
is_a: BulkSequencingAssayTemplate
description: Template for describing raw data from Whole Genome Sequencing (WGS)
slots:
annotations:
requiresComponent: ''
required: false
match:
assay:
- whole genome sequencing
dataType:
- SequenceReads
WESTemplate:
is_a: BulkSequencingAssayTemplate
description: Template for describing raw data from Whole Exome Sequencing (WES/WXS)
slots:
- targetCaptureKitID
annotations:
requiresComponent: ''
required: false
match:
assay:
- whole exome sequencing
dataType:
- SequenceReads
close_mappings:
- htan:BulkWESLevel1
EpigenomiscAssayTemplate:
is_a: BulkSequencingAssayTemplate
description: Template for describing raw data from epigenetics sequencing assays such as bisulfite sequencing.
slots:
- bisulfiteConversionKitID
annotations:
requiresComponent: ''
required: false
match:
assay:
- ATAC-seq
- bisulfite sequencing
- CAPP-seq
- CUT&RUN
- ChIP-seq
- ERR bisulfite sequencing
- HI-C
- NOMe-seq
- oxBS-seq
close_mappings:
- htan:BulkMethylation-seqLevel1
EpigeneticsAssayTemplate:
is_a: EpigenomiscAssayTemplate
description: Alias for EpigenomiscAssayTemplate for backwards-compatibility.
slots:
annotations:
requiresComponent: ''
required: false
GenomicsArrayTemplate:
is_a: GeneticsAssayTemplate
description: A template for describing raw data from array-based genomics/epigenomics, e.g. CEL files.
slots:
- platform
- channel
annotations:
requiresComponent: ''
required: false
match:
assay:
- array
- methylation array
- microarray
- miRNA array
- RNA array
- SNP array
- NanoString nCounter Analysis System
MethylationArrayTemplate:
is_a: GenomicsArrayTemplate
description: Template for raw data files (idat) from DNA methylation arrays.
source: https://docs.gdc.cancer.gov/Data_Dictionary/viewer/#?view=table-definition-view&id=raw_methylation_array
slots:
- chipID
- chipPosition
- plateName
- plateWell
annotations:
requiresComponent: ''
required: false
match:
assay:
- methylation array
#########################################################
# Biological Assay Data / Sequencing / Processed
#########################################################
ProcessedAlignedReadsTemplate:
is_a: BiologicalAssayDataTemplate
description: >
Template for describing aligned reads (e.g. BAM/CRAM files) from a sequencing assay.
The QC meta are extracted from samtools stats when available and are the same metrics preferred by GDC.
slots:
- genomicReference
- genomicReferenceLink
- averageInsertSize
- averageReadLength
- averageBaseQuality
- pairsOnDifferentChr
- readsDuplicatedPercent
- readsMappedPercent
- meanCoverage
- proportionCoverage10x
- proportionCoverage30x
- readDepth
- totalReads
- workflow
- workflowLink
- auxiliaryAsset # more qc files
- specimenID
annotations:
requiresComponent: ''
required: false
match:
assay:
- ATAC-seq
- CAPP-seq
- CUT&RUN
- ChIP-seq
- ERR bisulfite sequencing
- ISO-seq
- NOMe-seq
- RNA-seq
- T cell receptor repertoire sequencing
- bisulfite sequencing
- miRNA-seq
- next-generation sequencing
- scCGI-seq
- targeted exome sequencing
- whole exome sequencing
- whole genome sequencing
dataType:
- AlignedReads
close_mappings:
- htan:ScRNA-seqLevel2
- htan:BulkRNA-seqLevel2
- htan:BulkWESLevel2
ProcessedVariantCallsTemplate:
is_a: BiologicalAssayDataTemplate
description: Template for describing either simple germline/somatic variant calls output data (VCF/MAF) as well as structural variants (e.g. CNVs).
slots:
- isFilteredReads
- workflow
- workflowLink
- auxiliaryAsset
- specimenID
annotations:
requiresComponent: ''
required: false
match:
assay:
- next-generation sequencing
- targeted exome sequencing
- whole exome sequencing
- whole genome sequencing
- TIDE
dataType:
- GermlineVariants
- AnnotatedGermlineVariants
- SomaticVariants
- AnnotatedSomaticVariants
- CopyNumberVariants
close_mappings:
- htan:BulkWESLevel3
#################################################
# Biological Assay Data / Processed / Aggregated
#################################################
ProcessedExpressionTemplate:
is_a: BiologicalAssayDataTemplate
description: Template for quantified gene/protein expression data that are still represented as one file per sample.
slots:
- expressionUnit
- workflow
- workflowLink
- auxiliaryAsset
- specimenID
annotations:
requiresComponent: ''
required: false
match:
assay:
- quantitative PCR
- microarray
- miRNA array
- RNA array
- RNA-seq
- single-cell RNA-seq
dataType:
- geneExpression # .sf
- proteinExpression
close_mappings:
- htan:BulkRNA-seqLevel3
ProcessedMergedDataTemplate:
description: >
Further processed data with multiple samples aggregated into one file.
This may be also be known as level-4 data. Unlike level-2 and level-3 data, individual-level attributes such as age and sex are no longer surfaced on the data file directly.
slots:
- Component
- Filename
- fileFormat
- resourceType
- dataType
- dataSubtype
- workflow
- workflowLink
- auxiliaryAsset
- assay
annotations:
requiresComponent: ''
required: false
match:
dataType:
- AnnotatedSomaticVariants # merged MAFs
- AnnotatedGermlineVariants # merged MAFs
- geneExpresssion # TSVs
close_mappings:
- https://docs.gdc.cancer.gov/Data_Dictionary/viewer/#?view=table-definition-view&id=aggregated_somatic_mutation
- https://docs.gdc.cancer.gov/Data_Dictionary/viewer/#?view=table-definition-view&id=gene_expression
##################################################
# Biological Assay Data / Proteomics
##################################################
ProteinAssayTemplate:
is_a: BiologicalAssayDataTemplate
abstract: true
description: Abstract template for data from some assay of protein structure and function. Data should be instantiated with more specific template.
slots:
- parentSpecimenID
- specimenID
- aliquotID
- platform
- proteinExtractSource
annotations:
requiresComponent: ''
required: false
MassSpecAssayTemplate:
is_a: ProteinAssayTemplate
description: Template for raw mass spec-based proteomics data.
notes:
- Technically, mass spec does not have to be considered a biological assay, but we'll classify it as such when used with a biological sample.
slots:
- dataCollectionMode
annotations:
requiresComponent: ''
required: false
match:
assay:
- mass spectrometry
- FIA-MSMS
- label free mass spectrometry
- MudPIT
- TMT quantitation
- liquid chromatography/mass spectrometry
- liquid chromatography/tandem mass spectrometry
- ultra high-performance liquid chromatography/tandem mass spectrometry
close_mappings:
- htan:MassSpectrometryLevel1
ProteomicsAssayTemplate:
is_a: MassSpecAssayTemplate
description: Alias to MassSpecAssayTemplate for backwards-compatibility.
slots:
annotations:
requiresComponent: ''
required: false
ProteinArrayTemplate:
is_a: ProteinAssayTemplate
description: Template for array- and immuno-based proteomics data.
slots:
- antibodyID
annotations:
requiresComponent: ''
required: false
match:
assay:
- RPPA
close_mappings:
- htan:RPPALevel2
##############################################
# Biological Assay Data / Imaging / Raw
##############################################
ImagingAssayTemplate:
is_a: BiologicalAssayDataTemplate
description: General template for describing imaging data.
slots:
- platform
- assayTarget
- auxiliaryAsset
annotations:
requiresComponent: ''
required: false
match:
- 3D imaging
- high content screen # also under microscopy
- high frequency ultrasound
- in vivo bioluminescence
- gel filtration chromatography
- laser speckle imaging
- photograph
- positron emission tomography
- spatial frequency domain imaging
- western blot
MRIAssayTemplate:
is_a: ImagingAssayTemplate
description: Template for describing MRI data.
slots:
- bodySite # should be constrained to brain regions
- MRISequence
- experimentalCondition
- experimentalTimepoint
- timepointUnit
annotations:
requiresComponent: ''
required: false
match:
assay:
- conventional MRI
- functional MRI
MicroscopyAssayTemplate:
is_a: ImagingAssayTemplate
description: Template for data from a microscopy data.
slots:
- parentSpecimenID
- specimenID
- aliquotID
- objective
- nominalMagnification
- lensAperture
- workingDistance
- workingDistanceUnit
- immersion
annotations:
requiresComponent: ''
required: false
match:
assay:
- 3D confocal imaging
- 3D electron microscopy
- atomic force microscopy
- brightfield microscopy
- high content screen
- phase-contrast microscopy
- traction force microscopy
close_mappings:
- htan: ImagingLevel2
ImmunoMicroscopyTemplate:
is_a: MicroscopyAssayTemplate
description: Template for describing immunofluorescence or immunohistochemistry images.
slots:
- antibodyID
annotations:
requiresComponent: ''
required: false
match:
assay:
- immunofluorescence
- immunohistochemistry
############################################
# Biological Assay Data / Other
############################################
ClinicalAssayTemplate:
is_a: BiologicalAssayDataTemplate
description: >
General template for typically tabular **individual-level** data. This can include repeated measures and a drug treatment context.
slots:
- experimentalFactor
- experimentalCondition
- timepointUnit
- compoundName
- compoundDose
- compoundDoseUnit
- comments
annotations:
requiresComponent: ''
required: false
match:
assay:
- blood chemistry measurement
- body size trait measurement
- survival
- contextual conditioning behavior assay
- Corsi blocks
- elevated plus maze test
- gait measurement
- NIH Toolbox
- questionnaire
- Riccardi and Ablon scales
- Social Responsiveness Scale
- 'Social Responsiveness Scale, Second Edition'
- Von Frey test
- 'Child Behavior Checklist for Ages 1.5-5'
- 'Child Behavior Checklist for Ages 6-18'
dataType:
- clinical
GeneralMeasureDataTemplate:
is_a: BiologicalAssayDataTemplate
description: >
General template for data in tabular form that aggregates tissue-level or cellular-level data.
slots:
- parentSpecimenID
- specimenID
- aliquotID
- modelSystemName
- experimentalFactor
- experimentalCondition
- experimentalTimepoint
- timepointUnit
- compoundName
- compoundDose
- compoundDoseUnit
- genePerturbed
- genePerturbationType
- genePerturbationTechnology
- comments
annotations:
requiresComponent: ''
required: false
match:
assay:
- cell competition
- cell count
- cell proliferation
- cell viability assay
- combination library screen
- combination screen
- complex II enzyme activity assay
- compound screen
- BrdU proliferation assay
- electrochemiluminescence
- focus forming assay
- in vivo tumor growth
- Matrigel-based tumorigenesis assay
PharmacokineticsAssayTemplate:
is_a: BiologicalAssayDataTemplate
description: Generic template for describing data from a pharmacokinetics assay.
slots:
- parentSpecimenID
- specimenID
- aliquotID
- platform
- compoundName
- compoundDose
- compoundDoseUnit
- experimentalCondition
- experimentalTimepoint
- timepointUnit
annotations:
requiresComponent: ''
required: false
match:
assay:
- 2D AlamarBlue absorbance
- 2D AlamarBlue fluorescence
- 2D Incucyte
- ELISA
- sandwich ELISA
PlateBasedReporterAssayTemplate:
is_a: BiologicalAssayDataTemplate
description: Generic template for describing data from a plate-based reporter assay.
slots:
- parentSpecimenID
- specimenID
- aliquotID
- platform
- assayTarget
- compoundName
- compoundDose
- compoundDoseUnit
- experimentalCondition
- experimentalTimepoint
- timepointUnit
- reporterGene
- reporterSubstance
annotations:
requiresComponent: ''
required: false
match:
assay:
- 2D AlamarBlue absorbance
- 2D AlamarBlue fluorescence
- 2D Incucyte
- ELISA
- sandwich ELISA
FlowCytometryTemplate:
is_a: BiologicalAssayDataTemplate
description: Template for flow cytometry assay
slots:
- platform
- cellType
- auxiliaryAsset
annotations:
requiresComponent: ''
required: false
match:
assay:
- flow cytometry
close_mappings:
- https://www.immport.org/shared/dataModelDocumentation?table=fcs_analyzed_result
MaterialScienceAssayTemplate:
is_a: NonBiologicalAssayDataTemplate
description: General template for describing data for a materials science assay.
slots:
- platform
- specimenID
- materialType
- concentrationMaterial
- concentrationMaterialUnit
- concentrationNaCl
- concentrationNaClUnit
annotations:
requiresComponent: ''
required: false
match:
assay:
- rheometry
- oscillatory rheology
- differential scanning calorimetry
LightScatteringAssayTemplate:
is_a: MaterialScienceAssayTemplate
description: Template for dynamic or static light scattering data adapted from ISA-TAB-Nano specs.
source: https://wiki.nci.nih.gov/display/icr/isa-tab-nano
slots:
- pH
- concentrationNaCl
- concentrationNaClUnit
annotations:
requiresComponent: ''
required: false
match:
assay:
- dynamic light scattering
- microrheology
- oscillatory rheology
- static light scattering
ElectrophysiologyAssayTemplate:
is_a: BiologicalAssayDataTemplate
description: Template for raw electrophysiology data (electrical recordings).
source: https://arxiv.org/pdf/1605.07673.pdf
slots:
- platform
- bodySite # applies for electrophysiology at the body level
- cellType # applies for electrophysiology at the cell level, e.g. whole-cell patch clamp
- recordingSource
- experimentalTimepoint
- timepointUnit
- experimentalCondition
- auxiliaryAsset
match:
assay:
- local field potential recording
- long term potentiation assay
- multi-electrode array
- pattern electroretinogram
- whole-cell patch clamp
#######################################
# Other Data Artifacts
#######################################
WorkflowReport:
is_a: Template
description: Template used for miscellaneous workflow reports and accessory files
notes:
- resourceType should default to "workflow report"
- note that `dataType` and `dataSubtype` don't apply
slots:
- resourceType
- assay
- fileFormat
- relatedDataset
- workflow
- workflowLink
UpdateMilestoneReport:
is_a: PartialTemplate
description: Metadata template for updating milestone report values in NF studies -- currently a supported feature for NTAP and GFF.
slots:
- Filename
- resourceType
- progressReportNumber
annotations:
requiresComponent: ''
required: false