Postgres database: iondb
Postgres table: rundb_samplesetitem
Sample Set Item data model.
Created when the user assigns a sample to a sample set.
| Field | Type | Description |
|---|---|---|
| cancerType | String (up to 127) | cancerType |
| cellularityPct | Integer | cellularityPct |
| creationDate | Date (with time) | creationDate |
| creator | User (ForeignKey) | the related auth.User row |
| dnabarcode | dnaBarcode (ForeignKey) | the related rundb.dnaBarcode row |
| gender | String (up to 127) | gender |
| id | Integer | ID |
| lastModifiedDate | Date (with time) | lastModifiedDate |
| lastModifiedUser | User (ForeignKey) | the related auth.User row |
| relationshipGroup | Integer | relationshipGroup |
| relationshipRole | String (up to 127) | relationshipRole |
| sample | Sample (ForeignKey) | the related rundb.Sample row |
| sampleSet | SampleSet (ForeignKey) | the related rundb.SampleSet row |