Sample
Overview
Sample data model hosts information about any biological material, normally extracted from an Individual, that is used for a particular analysis. This is the main data model, it stores the most basic and important information.
Summary
Field
create
update
unique
required
id
processing
collection
qualityControl
description
somatic
phenotypes
individualId
fileIds
status
attributes
uuid
release
version
creationDate
modificationDate
internal
Data Model
Sample
You can find the Java code here.
Field
Description
id String
Sample ID in the study, this must be unique in the study but can be repeated in different studies. This is a mandatory parameter when creating a new sample, this ID cannot be changed at the moment.Tags: required, immutable, unique
uuid String
Global unique ID at the whole OpenCGA installation. This is automatically created during the sample creation and cannot be changed.Tags: internal, unique, immutable
Describes how the sample was processed in the lab.
Describes how the sample was collected.Note: The sample collection is a list of samples
release int
An integer describing the current data release.Tags: internal
version int
An integer describing the current version.Tags: internal
creationDate String
String representing when the sample was created, this is automatically set by OpenCGA.Tags: internal
modificationDate String
String representing when was the last time the sample was modified, this is automatically set by OpenCGA.Tags: internal
description String
An string to describe the properties of the sample.
somatic boolean
Indicates if the sample is somatic or germline (default)
phenotypes List<Phenotype>
A List with related phenotypes.
individualId String
fileIds List<String> Deprecated
List of File ID containing this sample, eg BAM, VCF, QC images, ...
An object describing the status of the Sample.
An object describing the internal information of the Sample. This is managed by OpenCGA.Tags: internal
attributes Map<Object,String>
You can use this field to store any other information, keep in mind this is not indexed so you cannot search by attributes.
SampleInternal
You can find the Java code here.
Field
Description
ProjectInternal
You can find the Java code here.
Field
Description
CohortInternal
You can find the Java code here.
Field
Description
StudyInternal
You can find the Java code here.
Field
Description
Example
This is a full JSON example:
Last updated