Project
Overview
Project data model hosts information about any project.
Summary
id
uuid
name
fqn
creationDate
modificationDate
description
organism
currentRelease
studies
release
attributes
Data Model
Project
You can find the Java code here.
id String
Object ID is a mandatory parameter when creating a new one, this ID cannot be changed at the moment.
uuid String
Unique 32-character identifier assigned automatically by OpenCGA.
name String
Name of the .
fqn String
Full Qualified Name (user@projectId).
creationDate String
Autogenerated date following the format YYYYMMDDhhmmss containing the date when the entry was first registered.
modificationDate String since: 1.0
Autogenerated date following the format YYYYMMDDhhmmss containing the date when the entry was last modified.
description String
Users may provide a description for the entry.
organism ProjectOrganism
Organism to which the project belongs.
currentRelease int
An integer describing the current data release.
studies List<Study>
Project study list.
release ProjectInternal
An integer describing the current data release.
attributes Map<String,Object>
You can use this field to store any other information, keep in mind this is not indexed so you cannot search by attributes.
ProjectOrganism
You can find the Java code here.
ProjectInternal
You can find the Java code here.
datastores Datastores
Default value is VARIANT.
cellbase CellBaseConfiguration
Cellbase configuration.
status InternalStatus
Status of the internal object.
registrationDate String
Registration date of the internal object.
lastModified String
Date of the last modification of the internal object.
InternalStatus
You can find the Java code here.
Last updated