Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
IP-3074 - Documentation discrepancies (#449)
Browse files Browse the repository at this point in the history
* catalog referral model after changes

* * Fixes describe in IP-3074
* Catalog Variable Set created

* * typos

* * version changed

* * IndividualId changed to ParticipantId
* TumourPresentation/PrimaryOrMetastatic moved to Tumour

* * Fixes describe in IP-3074
* Catalog Variable Set created

* * IndividualId changed to ParticipantId
* TumourPresentation/PrimaryOrMetastatic moved to Tumour

* removed unneeded spaces
  • Loading branch information
Antonior26 authored Mar 1, 2019
1 parent 3131301 commit ef067b9
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 43 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.gel.models</groupId>
<artifactId>gel-models</artifactId>
<version>7.3.1b1</version>
<version>7.3.1b2</version>
<packaging>${p.type}</packaging>

<properties>
Expand Down
58 changes: 29 additions & 29 deletions protocols/catalog_variable_set/v7.3/Referral.catalog_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@
"multiValue": false,
"required": false,
"type": "TEXT",
"name": "individualUid",
"description": "In GMS, this is the individualUid of the sample"
"name": "participantId",
"description": "Participant Id of the sample"
},
{
"multiValue": false,
Expand Down Expand Up @@ -2401,8 +2401,8 @@
"multiValue": false,
"required": false,
"type": "TEXT",
"name": "individualUid",
"description": "In GMS, this is the individualUid of the sample"
"name": "participantId",
"description": "Participant Id of the sample"
},
{
"multiValue": false,
Expand Down Expand Up @@ -2843,6 +2843,31 @@
"type": "TEXT",
"name": "tumourPrognosticScore",
"description": "Prognostic Score of the Tumour"
},
{
"name": "tumourPresentation",
"required": false,
"allowedValues": [
"FIRST_PRESENTATION",
"RECURRENCE",
"UNKNOWN"
],
"multiValue": false,
"type": "CATEGORICAL",
"description": "In GMS, tumour presentation"
},
{
"name": "primaryOrMetastatic",
"required": false,
"allowedValues": [
"PRIMARY",
"METASTATIC",
"UNKNOWN",
"NOT_APPLICABLE"
],
"multiValue": false,
"type": "CATEGORICAL",
"description": "In GMS, primary or metastatic"
}
],
"type": "OBJECT",
Expand Down Expand Up @@ -2900,31 +2925,6 @@
],
"type": "OBJECT",
"description": "In GMS, any previous treatment recorded in TOMs"
},
{
"name": "tumourPresentation",
"required": false,
"allowedValues": [
"FIRST_PRESENTATION",
"RECURRENCE",
"UNKNOWN"
],
"multiValue": false,
"type": "CATEGORICAL",
"description": "In GMS, tumour presentation"
},
{
"name": "primaryOrMetastatic",
"required": false,
"allowedValues": [
"PRIMARY",
"METASTATIC",
"UNKNOWN",
"NOT_APPLICABLE"
],
"multiValue": false,
"type": "CATEGORICAL",
"description": "In GMS, primary or metastatic"
}
],
"type": "OBJECT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@
"multiValue": false,
"required": false,
"type": "TEXT",
"name": "individualUid",
"description": "In GMS, this is the individualUid of the sample"
"name": "participantId",
"description": "Participant Id of the sample"
},
{
"multiValue": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ protocol CancerParticipants {
*/
union {null, string} tumourPrognosticScore;

/**
In GMS, tumour presentation
*/
union {null, TumourPresentation} tumourPresentation;

/**
In GMS, primary or metastatic
*/
union {null, PrimaryOrMetastatic} primaryOrMetastatic;

}


Expand Down Expand Up @@ -193,14 +203,6 @@ protocol CancerParticipants {
*/
union {null, array<PreviousTreatment>} previousTreatment;

/**
In GMS, tumour presentation
*/
union {null, TumourPresentation} tumourPresentation;

/**
In GMS, primary or metastatic
*/
union {null, PrimaryOrMetastatic} primaryOrMetastatic;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,9 @@ protocol CommonParticipant {
union {null, string} sampleUid;

/**
In GMS, this is the individualUid of the sample
Participant Id of the sample
*/
union {null, string} individualUid;
union {null, string} participantId;

/**
In GMS, this is the maskedPID
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
else:
raise ValueError("Not supported python version {}".format(target_version))

VERSION = "7.3.1b1"
VERSION = "7.3.1b2"
setup(
name='GelReportModels',
version=VERSION,
Expand Down

0 comments on commit ef067b9

Please sign in to comment.