Skip to content

Releases: phenopackets/phenopacket-schema

Release 2.0.0

21 Oct 11:18
Compare
Choose a tag to compare

Release v2.0 of the GA4GH Phenopacket schema as approved 2021-06-04

Release 1.0.0

27 Nov 13:28
Compare
Choose a tag to compare
Update README for version 1.0.0

Final release candidate

19 Nov 14:23
Compare
Choose a tag to compare
Pre-release

This is the final release candidate, bar any unforeseen blockers. It is expected that the model will remain unchanged for the final release.

The final breaking change was to the Disease message where tumorStage was changed to tnmFinding and a new diseaseStage field has been added (issue #188). Please see the docs for the updated specification and example.

In the RC3 version Disease was represented like this:

{
      "diseases": [{
        "term": {
          "id": "NCIT:C39853",
          "label": "Infiltrating Urothelial Carcinoma"
        },
        "tumorStage": [{
          "id": "NCIT:C48766",
          "label": "pT2b Stage Finding"
        }, {
          "id": "NCIT:C48750",
          "label": "pN2 Stage Finding"
        }]
      }]
    }

Now in RC4 tumorStage has changed to tnmFinding

{
      "diseases": [{
        "term": {
          "id": "NCIT:C39853",
          "label": "Infiltrating Urothelial Carcinoma"
        },
        "diseaseStage": [{
          "id": "NCIT:C27971",
          "label": "Stage IV"
        }],
        "tnmFinding": [{
          "id": "NCIT:C48766",
          "label": "pT2b Stage Finding"
        }, {
          "id": "NCIT:C48750",
          "label": "pN2 Stage Finding"
        }, {
          "id": "NCIT:C48700",
          "label": "M1 Stage Finding"
        }]
      }]
    }

Post-GA4GH Product Review Committee release

04 Sep 16:16
Compare
Choose a tag to compare

This release candidate has incorporated the changes from the PRC (Product Review Committee) meetings.

Major changes:
We have removed the File type and replaced it the HtsFile
Gene now requires the use of the official organism nomenclature committee identifier, but allows alternative identifiers. See #199
Individual now has optional additional identifiers. See #200
A new Update message has been added to MetaData to allow for more information about who and what happened when an update was made. See #190
The Biosample.tumor_stage was incorrectly modelled and has been moved to Disease.tumor_stage. See #188

GA4GH release candidate for the Product Review Committee

21 Jun 16:55
Compare
Choose a tag to compare

With this release we have removed the MurineAllele and Variant.background as it wasn't fully fit for purpose. There is also a new Interpretation element for use with reporting interpretations based on analysis of data reported in the phenopacket.

GA4GH Connect release candidate

05 Apr 11:31
Compare
Choose a tag to compare
Pre-release

Release candidate version for discussion at the next GA4GH Connect meeting

v0.1.0: Add Disease onset field

05 Dec 11:40
Compare
Choose a tag to compare
Pre-release

Please note that this release is not compatible with the 0.0.7 release. There are limited changes which may or may not impact your usage. Notable changes are as follows:

Changed primary Individual name from patient to subject in phenopackets.proto
Added new HtsFile message for capturing High-Throughput Sequencing file information to base.proto
Replaced File vcf and GenomeAssembly in PhenoPacket with repeated HtsFile hts_files in phenopackets.proto
Added Resource.iri_prefix in base.proto
Added Disease.onset field in base.proto

Added new PhenoPacketFormat utility class for converting to/from JSON and YAML

For your eyes only...

03 Aug 14:47
Compare
Choose a tag to compare
For your eyes only... Pre-release
Pre-release

This is a pre-1.0.0 release and may be subject to change, although the initial period of massive change should be over and therefore this should be considered usable.