-
Notifications
You must be signed in to change notification settings - Fork 4
/
dataset_types.json
779 lines (751 loc) · 33.8 KB
/
dataset_types.json
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
{
"definitions": {
"FASTQ": {
"description": "A FASTQ file of a NGS experiment.",
"properties": {
"READ_LENGTH": {
"type": "integer",
"openbis_type": "INTEGER",
"label": "Length of Reads",
"description": "The length of the reads in that file."
},
"NUMBER_OF_READS": {
"type": "integer",
"openbis_type": "INTEGER",
"label": "Number of Reads",
"description": "Number of reads included in the file."
}
}
},
"Q_MS_RAW_DATA": {
"description": "Designates the raw data generated during an MS run. Such data is either stored in a vendor-specific format (e.g., binary RAW files for Thermo Orbitraps) or in the open mzML standard.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_MS_RAW_VENDOR_TYPE": {
"type": "string",
"openbis_type": "CONTROLLEDVOCABULARY",
"label": "MS Vendor raw format",
"description": "Vendor format used by this raw file. For more information see vocabulary description."
}
}
},
"Q_NGS_RAW_DATA": {
"description": "Dataset holding raw data of an Next Generation Sequencing experiment",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_READS_COUNT": {
"type": "integer",
"openbis_type": "INTEGER",
"label": "Reads count",
"description": "Holds the number of reads produced by the sequencing run. This variable is intended for internal use (extracted automatically from the data file)."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_MAXQUANT_RESULTS": {
"description": "The result files generated by MaxQuant. Depending the operational mode of MaxQuant, the results may or may not contain protein quantification results.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_QUALITYCONTROL_RESULTS": {
"description": "Results produced by the OpenMS QC workflow as qcML.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_MAXQUANT_ORIGINAL_OUT": {
"description": "This data set type holds all the files that a MaxQuant run produces, except the input raw files. Data is held inside a tar.gz.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
}
}
},
"Q_EXT_MS_QUALITYCONTROL_RESULTS": {
"description": "Results produced by OpenMS QC as qcML.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_MA_RAW_DATA": {
"description": "Designates the raw data generated during an MicroArray run. Such data is for example stored in a vendor-specific format (e.g., CEL files).",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_EXTERNALDB_ID": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "External DB identifier",
"description": "This field facilitates the cross-linking to external databases outside the QBiC (e.g., confidential patient databases)."
}
}
},
"Q_PROJECT_DATA": {
"description": "Datasets that are attached to an instance of Q_Project_Sample and should be presented to the user on the project level. This should only include datasets that are not specific workflow results.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_ATTACHMENT_TYPE": {
"type": "string",
"openbis_type": "CONTROLLEDVOCABULARY",
"label": "Attachment Type",
"description": "Type of the attached file, e.g. results or experiment information. Used in the navigator to show the respective data sets where they are expected by the user."
}
}
},
"Q_MS_MZML_DATA": {
"description": "Raw microspectrometry data that has been converted to mzML format.",
"properties": {
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
}
}
},
"Q_WF_EDDA_BENCHMARK_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_EDDA_BENCHMARK_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MA_QUALITYCONTROL_LOGS": {
"description": "Log files of a microarray quality control run.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MA_QUALITYCONTROL_RESULTS": {
"description": "Results of a microarray quality control run.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_INDIVIDUALIZED_PROTEOME_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_INDIVIDUALIZED_PROTEOME_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_LIGANDOMICS_ID_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_LIGANDOMICS_ID_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_LIGANDOMICS_QC_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_LIGANDOMICS_QC_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_MAXQUANT_LOGS": {
"description": "Log files of a maxquant run.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_PEPTIDEID_LOGS": {
"description": "Log files created by the Peptide Identification Workflow run",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_PEPTIDEID_RESULTS": {
"description": "Results produced by the Peptide Identification Workflow",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_MS_QUALITYCONTROL_LOGS": {
"description": "Log files produced by the OpenMS QC workflow.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_EPITOPE_PREDICTION_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_EPITOPE_PREDICTION_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_HLATYPING_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_HLATYPING_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_MAPPING_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_MAPPING_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
}
}
},
"Q_WF_NGS_QUALITYCONTROL_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_QUALITYCONTROL_RESULTS": {
"description": "Results produced by the FastQC workflow.",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_RNAEXPRESSIONANALYSIS_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_RNAEXPRESSIONANALYSIS_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_VARIANT_ANNOTATION_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_VARIANT_ANNOTATION_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_VARIANT_CALLING_LOGS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_WF_NGS_VARIANT_CALLING_RESULTS": {
"description": "",
"properties": {
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
}
}
},
"Q_NGS_READ_MATCH_ARCHIVE": {
"description": "Files ending in .rma are in a compressed binary format called RMA (read-match archive) produced by MALT (MEGAN alignment tool). There are multiple versions, e.g. RMA2, RMA3, RMA6",
"properties": {
"Q_READ_MATCH_ARCHIVE_FORMAT": {
"type": "string",
"openbis_type": "CONTROLLEDVOCABULARY",
"label": "Read match archive format",
"description": "Version of the red match archive format produced by MALT (MEGAN alignment tool) or similar tools"
}
}
},
"Q_NMR_RAW_DATA": {
"description": "Data set for NMR raw data.",
"properties": {
"Q_SECONDARY_NAME": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Secondary name",
"description": "While an experiment is unambiguously identified by an unique code, this secondary name might be used as a more descriptive label for the experiment or sample (e.g., \"Shotgun proteomics experiment #120\", \"Plasma sample #33\"). Also, often labs want to keep of their their in-house labels."
},
"Q_FILE_PROPERTIES": {
"type": "string",
"openbis_type": "XML",
"label": "File properties",
"description": "A XML-based file that contains file-specific meta information (e.g., checksums for data integrity checks)."
},
"Q_ADDITIONAL_INFO": {
"type": "string",
"openbis_type": "MULTILINE_VARCHAR",
"label": "Additional information",
"description": "Additional notes about the experiment"
},
"Q_NMR_REPORT": {
"type": "string",
"openbis_type": "XML",
"label": "NMR report",
"description": "NMR xml report where compounds and concentrations are displayed."
}
}
},
"Q_PIPELINE_RESULTS": {
"description": "Results generated by a Nextflow pipeline",
"properties": {
"Q_WF_ID": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Workflow ID",
"description": "The identifier of a workflow"
},
"Q_EXECUTION_TRACE": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Execution trace",
"description": "The execution trace of a Nextflow pipeline. Typically stored in 'results/pipeline_info/execution_trace.txt"
},
"Q_MULTIQC_REPORT": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "MultiQC Report",
"description": "The MultiQC report of a Nextflow pipeline."
},
"Q_SOFTWARE_VERSIONS": {
"type": "string",
"openbis_type": "VARCHAR",
"label": "Software versions",
"description": "The 'software_versions.csv' file contains software versions of all tools used in a Nextflow pipeline."
}
}
},
"Q_NGS_NANOPORE_RUN_FAST5": {
"description": "Sequenced reads in the fast5 format, sorted by passing vs. failing the quality criteria.",
"properties": {
}
},
"JPG": {
"description": "",
"properties": {
}
},
"CSV": {
"description": "A Comma-Separated Values file.",
"properties": {
}
},
"RAW": {
"description": "Raw data file",
"properties": {
}
},
"VCF": {
"description": "A Variant Call Format (VCF) file",
"properties": {
}
},
"EXPRESSION_MATRIX": {
"description": "Contains a CSV file measuring expression of some kind (genes, proteins). It should contain references to IDs used in openbis or the experimental design.",
"properties": {
}
},
"Q_MA_CHIP_IMAGE": {
"description": "Images or Pseudo-images of microarray chips. Can for example be used for quality control.",
"properties": {
}
},
"Q_NGS_VARIANT_CALLING_DATA": {
"description": "Dataset holding data of a variant calling experiment ",
"properties": {
}
},
"IDXML": {
"description": "IdXML file",
"properties": {
}
},
"GZ": {
"description": "GZ archive file",
"properties": {
}
},
"PNG": {
"description": "",
"properties": {
}
},
"Q_NGS_IMMUNE_MONITORING_DATA": {
"description": "Dataset holding data of an immune monitoring experiment",
"properties": {
}
},
"MAT": {
"description": "",
"properties": {
}
},
"Q_NGS_NANOPORE_RUN_LOGS": {
"description": "Collected log files from a Nanopore Sequencing run",
"properties": {
}
},
"ARR": {
"description": "The ARR file contains any sample attributes and array information of an affymetrix microarray.",
"properties": {
}
},
"SHA256SUM": {
"description": "Checksum for registered data files",
"properties": {
}
},
"Q_NGS_NANOPORE_RUN_FASTQ": {
"description": "Reads from one FASTQ run, sorted by passing vs. failing the quality criteria",
"properties": {
}
},
"AUDIT": {
"description": "An Audit file is an XML file that tracks the processing of each physical array processed by AGCC. An\nAudit file is produced for each physical array and tracks all the processing steps that were performed on the array, including multiple scannings and regridding. The audit file has the same root name as the physical array.",
"properties": {
}
},
"CEL": {
"description": "Affymetrix CEL format raw file. The CEL file stores the results of the intensity calculations on the pixel values of the DAT file. This includes an intensity value, standard deviation of the intensity, the number of pixels used to calculate the intensity value, a flag to indicate an outlier as calculated by the algorithm and a user defined flag indicating the feature should be excluded from future analysis. This data is used by the CHP writer software to extract the actual data of interest.",
"properties": {
}
},
"TAR": {
"description": "",
"properties": {
}
},
"FEATUREXML": {
"description": "featureXML file",
"properties": {
}
},
"Q_NGS_HLATYPING_DATA": {
"description": "Dataset holding data of an HLA Typing experiment",
"properties": {
}
},
"Q_EXT_NGS_QUALITYCONTROL_RESULTS": {
"description": "Results produced by the FastQC.",
"properties": {
}
},
"UNKNOWN": {
"description": "Unknown",
"properties": {
}
},
"Q_NGS_MAPPING_DATA": {
"description": "Dataset holding aligned genomic data ",
"properties": {
}
},
"EXPERIMENTAL_DESIGN": {
"description": "Contains TSV of the experimental design format used by the wizard. To be attached to single experimental layers, namely the ones containing data to be analyzed with respect to the experimental design.",
"properties": {
}
},
"MZML": {
"description": "Mass spectrometry data format. Unifiying mzXML and mzData formats, as released at the 2008 American Society for Mass Spectrometry Meeting.",
"properties": {
}
},
"PDF": {
"description": "Portable Document Format",
"properties": {
}
}
}
}