nci-cidc-api-modules 1.2.30__py3-none-any.whl → 1.2.32__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,8 +16,8 @@ class AdditionalTreatmentORM(BaseORM):
16
16
  additional_treatment_id: Mapped[int] = mapped_column(primary_key=True)
17
17
  participant_id: Mapped[int] = mapped_column(ForeignKey("stage2.participant.participant_id", ondelete="CASCADE"))
18
18
 
19
- days_to_start: Mapped[Optional[NonNegativeInt]]
20
- days_to_end: Mapped[Optional[NonNegativeInt]]
21
- description: Mapped[str]
19
+ additional_treatment_days_to_start: Mapped[Optional[NonNegativeInt]]
20
+ additional_treatment_days_to_end: Mapped[Optional[NonNegativeInt]]
21
+ additional_treatment_description: Mapped[str]
22
22
 
23
23
  participant: Mapped["ParticipantORM"] = relationship(back_populates="additional_treatments", cascade="all, delete")
@@ -35,9 +35,9 @@ class DemographicORM(BaseORM):
35
35
  height_units: Mapped[HeightUnits]
36
36
  weight: Mapped[PositiveFloat]
37
37
  weight_units: Mapped[WeightUnits]
38
- body_mass_index: Mapped[PositiveFloat]
39
- body_surface_area: Mapped[PositiveFloat]
40
- body_surface_area_units: Mapped[BodySurfaceAreaUnits]
38
+ body_mass_index: Mapped[PositiveFloat | None]
39
+ body_surface_area: Mapped[PositiveFloat | None]
40
+ body_surface_area_units: Mapped[BodySurfaceAreaUnits | None]
41
41
  occupation: Mapped[Occupation | None]
42
42
  income: Mapped[NonNegativeFloat | None]
43
43
  highest_level_of_education: Mapped[Education | None]
@@ -19,12 +19,12 @@ class OtherMalignancyORM(BaseORM):
19
19
  ForeignKey("stage2.medical_history.medical_history_id", ondelete="CASCADE")
20
20
  )
21
21
 
22
- primary_disease_site: Mapped[UberonAnatomicalTerm]
23
- morphological_code: Mapped[Optional[ICDO3MorphologicalCode]]
24
- morphological_term: Mapped[Optional[ICDO3MorphologicalTerm]]
25
- malignancy_description: Mapped[Optional[str]]
26
- days_since_diagnosis: Mapped[Optional[NonPositiveInt]]
27
- malignancy_status: Mapped[Optional[MalignancyStatus]]
22
+ other_malignancy_primary_disease_site: Mapped[UberonAnatomicalTerm]
23
+ other_malignancy_morphological_code: Mapped[Optional[ICDO3MorphologicalCode]]
24
+ other_malignancy_morphological_term: Mapped[Optional[ICDO3MorphologicalTerm]]
25
+ other_malignancy_description: Mapped[Optional[str]]
26
+ other_malignancy_days_since_diagnosis: Mapped[Optional[NonPositiveInt]]
27
+ other_malignancy_status: Mapped[Optional[MalignancyStatus]]
28
28
 
29
29
  medical_history: Mapped["MedicalHistoryORM"] = relationship(
30
30
  back_populates="other_malignancies", cascade="all, delete"
@@ -23,7 +23,7 @@ class ParticipantORM(BaseORM):
23
23
  version: Mapped[str]
24
24
 
25
25
  native_participant_id: Mapped[str | None]
26
- cimac_participant_id: Mapped[str] = mapped_column(unique=True)
26
+ cimac_participant_id: Mapped[str | None]
27
27
  consent_group_id: Mapped[Optional[int]] = mapped_column(
28
28
  ForeignKey("stage2.consent_group.consent_group_id", ondelete="CASCADE")
29
29
  )
@@ -1,8 +1,9 @@
1
- from typing import Optional
1
+ from typing import Optional, List
2
2
 
3
- from pydantic import NonPositiveInt, NonNegativeInt
3
+ from pydantic import NonPositiveInt, NegativeInt
4
4
  from sqlalchemy import ForeignKey
5
5
  from sqlalchemy.orm import Mapped, mapped_column, relationship
6
+ from sqlalchemy.types import JSON
6
7
 
7
8
  from cidc_api.models.db.base_orm import BaseORM
8
9
  from cidc_api.models.types import PriorTreatmentType, ConditioningRegimenType, StemCellDonorType
@@ -17,13 +18,13 @@ class PriorTreatmentORM(BaseORM):
17
18
  prior_treatment_id: Mapped[int] = mapped_column(primary_key=True)
18
19
  participant_id: Mapped[int] = mapped_column(ForeignKey("stage2.participant.participant_id", ondelete="CASCADE"))
19
20
 
20
- days_to_start: Mapped[Optional[NonPositiveInt]]
21
- days_to_end: Mapped[Optional[NonPositiveInt]]
22
- type: Mapped[PriorTreatmentType]
23
- description: Mapped[Optional[str]]
24
- best_response: Mapped[Optional[str]]
25
- conditioning_regimen_type: Mapped[Optional[ConditioningRegimenType]]
26
- stem_cell_donor_type: Mapped[Optional[StemCellDonorType]]
27
- days_from_transplant_to_treatment_initiation: Mapped[Optional[NonNegativeInt]]
21
+ prior_treatment_days_to_start: Mapped[Optional[NonPositiveInt]]
22
+ prior_treatment_days_to_end: Mapped[Optional[NonPositiveInt]]
23
+ prior_treatment_type: Mapped[List[PriorTreatmentType]] = mapped_column(JSON, nullable=False)
24
+ prior_treatment_description: Mapped[Optional[str]]
25
+ prior_treatment_best_response: Mapped[Optional[str]]
26
+ prior_treatment_conditioning_regimen_type: Mapped[Optional[ConditioningRegimenType]]
27
+ prior_treatment_stem_cell_donor_type: Mapped[Optional[StemCellDonorType]]
28
+ prior_treatment_days_to_prior_transplant: Mapped[Optional[NegativeInt]]
28
29
 
29
30
  participant: Mapped["ParticipantORM"] = relationship(back_populates="prior_treatments", cascade="all, delete")
@@ -18,6 +18,7 @@ class ResponseBySystemORM(BaseORM):
18
18
  response_system_version: Mapped[ResponseSystemVersion] = mapped_column(String)
19
19
  best_overall_response: Mapped[BestOverallResponse] = mapped_column(String)
20
20
  response_duration: Mapped[PositiveInt | None]
21
+ duration_of_stable_disease: Mapped[PositiveInt | None]
21
22
  durable_clinical_benefit: Mapped[bool | None]
22
23
  days_to_first_response: Mapped[PositiveInt | None]
23
24
  days_to_best_response: Mapped[PositiveInt | None]
@@ -16,13 +16,13 @@ class ResponseORM(BaseORM):
16
16
  response_id: Mapped[int] = mapped_column(primary_key=True)
17
17
  participant_id: Mapped[int] = mapped_column(ForeignKey("stage2.participant.participant_id", ondelete="CASCADE"))
18
18
  survival_status: Mapped[SurvivalStatus]
19
- overall_survival: Mapped[NonNegativeInt | None]
19
+ overall_survival: Mapped[NonNegativeInt]
20
20
  abscopal_response: Mapped[YNUNA | None]
21
21
  pathological_complete_response: Mapped[YNUNA | None]
22
22
  days_to_death: Mapped[NonNegativeInt | None]
23
23
  cause_of_death: Mapped[CauseOfDeath | None]
24
24
  evaluable_for_toxicity: Mapped[bool]
25
25
  evaluable_for_efficacy: Mapped[bool]
26
- days_to_last_follow_up: Mapped[NonNegativeInt | None]
26
+ days_to_last_vital_status: Mapped[NonNegativeInt | None]
27
27
 
28
28
  participant: Mapped["ParticipantORM"] = relationship(back_populates="response", cascade="all, delete")
@@ -6,7 +6,7 @@ from sqlalchemy.orm import Mapped, mapped_column, relationship
6
6
  from sqlalchemy.types import JSON
7
7
 
8
8
  from cidc_api.models.db.base_orm import BaseORM
9
- from cidc_api.models.types import AssayType, TrialOrganization, TrialFundingAgency
9
+ from cidc_api.models.types import AssayType, TrialOrganization, TrialFundingAgency, AgeGroup
10
10
 
11
11
 
12
12
  class TrialORM(BaseORM):
@@ -18,23 +18,26 @@ class TrialORM(BaseORM):
18
18
  trial_id: Mapped[str] = mapped_column(primary_key=True)
19
19
  version: Mapped[str] = mapped_column(primary_key=True)
20
20
 
21
- nct_id: Mapped[Optional[str]]
22
- nci_id: Mapped[Optional[str]]
23
- trial_name: Mapped[Optional[str]]
24
- trial_type: Mapped[Optional[str]]
25
- trial_description: Mapped[Optional[str]]
26
- trial_organization: Mapped[Optional[TrialOrganization]]
27
- grant_or_affiliated_network: Mapped[Optional[TrialFundingAgency]]
28
- biobank_institution_id: Mapped[Optional[int]]
29
- justification: Mapped[Optional[str]]
21
+ primary_endpoint: Mapped[str | None]
22
+ age_group: Mapped[List[AgeGroup]] = mapped_column(JSON, nullable=True)
23
+ study_population: Mapped[str | None]
24
+ nct_id: Mapped[str | None]
25
+ nci_id: Mapped[str | None]
26
+ trial_name: Mapped[str | None]
27
+ trial_type: Mapped[str | None]
28
+ trial_description: Mapped[str | None]
29
+ trial_organization: Mapped[TrialOrganization | None]
30
+ grant_or_affiliated_network: Mapped[TrialFundingAgency | None]
31
+ biobank_institution_id: Mapped[int | None]
32
+ justification: Mapped[str | None]
30
33
  dates_of_conduct_start: Mapped[datetime]
31
- dates_of_conduct_end: Mapped[Optional[datetime]]
32
- schema_file_id: Mapped[Optional[int]]
33
- biomarker_plan: Mapped[Optional[str]]
34
- data_sharing_plan: Mapped[Optional[str]]
35
- expected_assays: Mapped[Optional[List[AssayType]]] = mapped_column(JSON, nullable=True)
34
+ dates_of_conduct_end: Mapped[datetime | None]
35
+ schema_file_id: Mapped[int | None]
36
+ biomarker_plan: Mapped[str | None]
37
+ data_sharing_plan: Mapped[str | None]
38
+ expected_assays: Mapped[List[AssayType]] = mapped_column(JSON, nullable=True)
36
39
  is_liquid_tumor_trial: Mapped[bool]
37
- dbgap_study_accession: Mapped[Optional[str]]
40
+ dbgap_study_accession: Mapped[str | None]
38
41
 
39
42
  biobank: Mapped["InstitutionORM"] = relationship(back_populates="trial")
40
43
  schema: Mapped[Optional["FileORM"]] = relationship(back_populates="trial", viewonly=True)
@@ -15,11 +15,11 @@ class AdditionalTreatment(Base):
15
15
  )
16
16
 
17
17
  # Number of days from the enrollment date to the first recorded administration or occurrence of the treatment modality.
18
- days_to_start: NonNegativeInt | None = None
18
+ additional_treatment_days_to_start: NonNegativeInt | None = None
19
19
 
20
20
  # Number of days from the enrollment date to the last recorded administration or occurrence of the treatment modality.
21
- days_to_end: NonNegativeInt | None = None
21
+ additional_treatment_days_to_end: NonNegativeInt | None = None
22
22
 
23
23
  # Description of the prior treatment such as its full generic name if it is a type of therapy agent, radiotherapy procedure
24
24
  # name and location, or surgical procedure name and location.
25
- description: str
25
+ additional_treatment_description: str
@@ -6,7 +6,7 @@ import copy
6
6
 
7
7
  class Base(BaseModel):
8
8
 
9
- model_config = ConfigDict(validate_assignment=True, from_attributes=True)
9
+ model_config = ConfigDict(validate_assignment=True, from_attributes=True, extra="forbid")
10
10
 
11
11
  # Validates the new state and updates the object if valid
12
12
  def update(self, **kwargs):
@@ -38,5 +38,7 @@ class Base(BaseModel):
38
38
  if not val:
39
39
  return []
40
40
  return val.split("|")
41
+ elif val == None:
42
+ return []
41
43
  else:
42
44
  raise ValueError("Field value must be string or list")
@@ -68,15 +68,15 @@ class Demographic(Base):
68
68
 
69
69
  # The body mass index of the participant at the enrollment date.
70
70
  # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2006410%20and%20ver_nr=3
71
- body_mass_index: PositiveFloat
71
+ body_mass_index: PositiveFloat | None = None
72
72
 
73
73
  # A decimal number that represents the measure of the 2-dimensional extent of the body surface (i.e., the skin) of the participant at the enrollment date.
74
74
  # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6606197%20and%20ver_nr=1
75
- body_surface_area: PositiveFloat
75
+ body_surface_area: PositiveFloat | None = None
76
76
 
77
77
  # Unit of measurement for body surface area of the participant at the enrollment date. e.g. "m2"
78
78
  # https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=15114329%20and%20ver_nr=1
79
- body_surface_area_units: BodySurfaceAreaUnits
79
+ body_surface_area_units: BodySurfaceAreaUnits | None = None
80
80
 
81
81
  # The occupation/job category of the participant. e.g. "Manager"
82
82
  # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6617540%20and%20ver_nr=1
@@ -113,3 +113,11 @@ class Demographic(Base):
113
113
  if age_in_years >= 90:
114
114
  raise ValueError('"age_at_enrollment" cannot represent a value greater than 90 years of age.')
115
115
  return self
116
+
117
+ @model_validator(mode="after")
118
+ def validate_body_surface_area_units_cr(self) -> Self:
119
+ if self.body_surface_area and not self.body_surface_area_units:
120
+ raise ValueError(
121
+ 'If "body_surface_area" is provided then "body_surface_area_units_other" must also be provided.'
122
+ )
123
+ return self
@@ -17,28 +17,32 @@ class OtherMalignancy(Base):
17
17
  medical_history_id: int | None = None
18
18
 
19
19
  # The location within the body from where the prior malignancy originated as captured in the Uberon anatomical term.
20
- primary_disease_site: UberonAnatomicalTerm
20
+ other_malignancy_primary_disease_site: UberonAnatomicalTerm
21
21
 
22
22
  # The ICD-O-3 code which identifies the specific appearance of cells and tissues (normal and abnormal) used
23
23
  # to define the presence and nature of disease.
24
- morphological_code: ICDO3MorphologicalCode | None = None
24
+ other_malignancy_morphological_code: ICDO3MorphologicalCode | None = None
25
25
 
26
26
  # The ICD-O-3 textual label which identifies the specific appearance of cells and tissues (normal and abnormal) used
27
27
  # to define the presence and nature of disease.
28
- morphological_term: ICDO3MorphologicalTerm | None = None
28
+ other_malignancy_morphological_term: ICDO3MorphologicalTerm | None = None
29
29
 
30
30
  # Description of the cancer type as recorded in the trial.
31
- malignancy_description: str | None = None
31
+ other_malignancy_description: str | None = None
32
32
 
33
33
  # Number of days since original diagnosis from the enrollment date. This may be a negative number.
34
- days_since_diagnosis: NonPositiveInt | None = None
34
+ other_malignancy_days_since_diagnosis: NonPositiveInt | None = None
35
35
 
36
36
  # Indicates the participant’s current clinical state regarding the cancer diagnosis.
37
- malignancy_status: MalignancyStatus | None = None
37
+ other_malignancy_status: MalignancyStatus | None = None
38
38
 
39
39
  @model_validator(mode="after")
40
40
  def validate_code_or_term_or_description_cr(self) -> Self:
41
- if not self.morphological_code and not self.morphological_term and not self.malignancy_description:
41
+ if (
42
+ not self.other_malignancy_morphological_code
43
+ and not self.other_malignancy_morphological_term
44
+ and not self.other_malignancy_description
45
+ ):
42
46
  raise ValueError(
43
47
  'Please provide at least one of "morphological_code", "morphological_term" or "malignancy_description".'
44
48
  )
@@ -1,6 +1,6 @@
1
- from typing import Self
1
+ from typing import Self, Annotated, List
2
2
 
3
- from pydantic import NonPositiveInt, NonNegativeInt, model_validator
3
+ from pydantic import NonPositiveInt, NegativeInt, model_validator, BeforeValidator
4
4
 
5
5
  from .base import Base
6
6
  from cidc_api.models.types import PriorTreatmentType, ConditioningRegimenType, StemCellDonorType
@@ -18,35 +18,35 @@ class PriorTreatment(Base):
18
18
 
19
19
  # Number of days from the enrollment date to the first recorded administration or occurrence of
20
20
  # the treatment modality.
21
- days_to_start: NonPositiveInt | None = None
21
+ prior_treatment_days_to_start: NonPositiveInt | None = None
22
22
 
23
23
  # Number of days from the enrollment date to the last recorded administration or occurrence of
24
24
  # the treatment modality.
25
- days_to_end: NonPositiveInt | None = None
25
+ prior_treatment_days_to_end: NonPositiveInt | None = None
26
26
 
27
27
  # Specifies the category or kind of prior treatment modality a participant received.
28
- type: PriorTreatmentType
28
+ prior_treatment_type: Annotated[List[PriorTreatmentType], BeforeValidator(Base.split_list)]
29
29
 
30
30
  # Description of the prior treatment such as its full generic name if it is a type of therapy agent,
31
31
  # radiotherapy procedure name and location, or surgical procedure name and location.
32
- description: str | None = None
32
+ prior_treatment_description: str | None = None
33
33
 
34
34
  # Best response from any response assessment system to the prior treatment if available or applicable.
35
- best_response: str | None = None
35
+ prior_treatment_best_response: str | None = None
36
36
 
37
37
  # If the prior treatment is "Conditioning therapy" received before a stem cell transplant, specifies what
38
38
  # type of conditioning regimen used.
39
- conditioning_regimen_type: ConditioningRegimenType | None = None
39
+ prior_treatment_conditioning_regimen_type: ConditioningRegimenType | None = None
40
40
 
41
41
  # If prior treatment is "Stem cell transplant", indicates what stem cell donor type used.
42
- stem_cell_donor_type: StemCellDonorType | None = None
42
+ prior_treatment_stem_cell_donor_type: StemCellDonorType | None = None
43
43
 
44
44
  # If prior treatment is "Stem cell transplant", indicates the number of days from the transplant
45
45
  # date to the start of the current treatment.
46
- days_from_transplant_to_treatment_initiation: NonNegativeInt | None = None
46
+ prior_treatment_days_to_prior_transplant: NegativeInt | None = None
47
47
 
48
48
  @model_validator(mode="after")
49
49
  def validate_description_cr(self) -> Self:
50
- if self.type == "Other therapy" and not self.description:
50
+ if "Other therapy" in self.prior_treatment_type and not self.prior_treatment_description:
51
51
  raise ValueError('If type is "Other therapy", please provide description.')
52
52
  return self
@@ -22,7 +22,7 @@ class Response(Base):
22
22
  survival_status: SurvivalStatus
23
23
 
24
24
  # Number of days from enrollment date to death date.
25
- overall_survival: NonNegativeInt | None = None
25
+ overall_survival: NonNegativeInt
26
26
 
27
27
  # Indicator for whether there was an abscopal effect on disease after local therapy.
28
28
  abscopal_response: YNUNA | None = None
@@ -43,14 +43,8 @@ class Response(Base):
43
43
  # Indicates whether participant was evaluable for efficacy (for example, response, PFS, OS, etc.) overall.
44
44
  evaluable_for_efficacy: bool
45
45
 
46
- # Days from enrollment date to the last time patient had follow-up.
47
- days_to_last_follow_up: NonNegativeInt | None = None
48
-
49
- @model_validator(mode="after")
50
- def validate_overall_survival_cr(self) -> Self:
51
- if self.survival_status != "Unknown" and not self.overall_survival:
52
- raise ValueError('If survival_status is not "Unknown" then overall_survival is required.')
53
- return self
46
+ # Days from enrollment date to the last time the patient's vital status was verified.
47
+ days_to_last_vital_status: NonNegativeInt | None = None
54
48
 
55
49
  @model_validator(mode="after")
56
50
  def validate_cause_of_death_cr(self) -> Self:
@@ -1,6 +1,6 @@
1
1
  from typing import Self
2
2
 
3
- from pydantic import PositiveInt, model_validator
3
+ from pydantic import PositiveInt, model_validator, NonNegativeInt
4
4
 
5
5
  from .base import Base
6
6
  from cidc_api.models.types import ResponseSystem, ResponseSystemVersion, BestOverallResponse, YNUNA
@@ -41,6 +41,9 @@ class ResponseBySystem(Base):
41
41
  # Days from first response to progression.
42
42
  response_duration: PositiveInt | None = None
43
43
 
44
+ # The number of days from the start of the treatment to the first signs of disease progression.
45
+ duration_of_stable_disease: NonNegativeInt | None = None
46
+
44
47
  # Indicates whether a patient achieved a durable clinical benefit.
45
48
  durable_clinical_benefit: bool | None = None
46
49
 
@@ -1,8 +1,9 @@
1
1
  from datetime import datetime
2
- from typing import List
2
+ from pydantic import BeforeValidator
3
+ from typing import List, Annotated
3
4
 
4
5
  from .base import Base
5
- from cidc_api.models.types import TrialOrganization, TrialFundingAgency, AssayType
6
+ from cidc_api.models.types import TrialOrganization, TrialFundingAgency, AssayType, AgeGroup
6
7
 
7
8
 
8
9
  class Trial(Base):
@@ -16,6 +17,15 @@ class Trial(Base):
16
17
  # The version number of the trial dataset. e.g. "1.0"
17
18
  version: str | None = None
18
19
 
20
+ # A broad textual description of the primary endpoint(s) of the trial.
21
+ primary_endpoint: str | None = None
22
+
23
+ # The identifiable class of the study participant based upon their age.
24
+ age_group: Annotated[List[AgeGroup], BeforeValidator(Base.split_list)]
25
+
26
+ # Clinical and/or molecular characteristics of the cancer(s) in the study population.
27
+ study_population: str | None = None
28
+
19
29
  # ClinicalTrials.gov identifier. e.g. "NCT03731260"
20
30
  # TODO need cde from janice, they will make one
21
31
  nct_id: str | None = None
cidc_api/models/types.py CHANGED
@@ -20,6 +20,12 @@ from cidc_api.reference.gvhd import is_gvhd_organ
20
20
  # As python Enums are rather cumbersome when we only want a list of permissible values for a string, use Literal instead
21
21
 
22
22
 
23
+ AgeGroup = Literal[
24
+ "Adolescent and Young Adult",
25
+ "Adult",
26
+ "Pediatric",
27
+ ]
28
+
23
29
  TrialOrganization = Literal[
24
30
  "ECOG-ACRIN",
25
31
  "SWOG",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nci_cidc_api_modules
3
- Version: 1.2.30
3
+ Version: 1.2.32
4
4
  Summary: SQLAlchemy data models and configuration tools used in the NCI CIDC API
5
5
  Home-page: https://github.com/NCI-CIDC/cidc-api-gae
6
6
  License: MIT license
@@ -8,10 +8,10 @@ cidc_api/models/data.py,sha256=uLkgAJ6tCtsi3bOGt8I9esYrZqgbsTYM1rGfL2gx5sY,837
8
8
  cidc_api/models/migrations.py,sha256=UlS5How3J4ryaRuZT6F5VQtAKikkl0LTv9MgMO_ltiQ,11161
9
9
  cidc_api/models/models.py,sha256=zGOvQMe86kLqC_bbB9ezrBYL9QNA_4GrtYhRGGeqOcU,148525
10
10
  cidc_api/models/schemas.py,sha256=6IE2dJoEMcMbi0Vr1V3cYKnPKU0hv9vRKBixOZHe88s,2766
11
- cidc_api/models/types.py,sha256=gnP8HmGRqTo0dc0RZCBa1W8NUD2Ppsm4C0OHZzlPjVI,29580
11
+ cidc_api/models/types.py,sha256=nq_PvzDz67HzceOI_ve9AxReExAZ-XFE7T3G2bbpqJ4,29667
12
12
  cidc_api/models/db/base_orm.py,sha256=EV78qFBcOR7spK_PhjbkpsGcmcP33AQItX61SidDa_8,813
13
13
  cidc_api/models/db/stage2/__init__.py,sha256=R33BM1VDKJya5uuyYnPoGFVfhSViclIOklSoHH-EtBQ,2691
14
- cidc_api/models/db/stage2/additional_treatment_orm.py,sha256=Gb-KdVGiL0yDzdQL-BqM5cNke7N9T84y0mLwqElUl8U,912
14
+ cidc_api/models/db/stage2/additional_treatment_orm.py,sha256=SZHsOgQJrPyNuc_Ssu1LvA3yP99iBIvWWRpmNUICudU,975
15
15
  cidc_api/models/db/stage2/administrative_person_orm.py,sha256=erXyILdFI7o0RrCW0jB9dyGP6Kdz4vCSXM49EVhA_hQ,1020
16
16
  cidc_api/models/db/stage2/administrative_role_assignment_orm.py,sha256=a8GN66njTPZb3HQAxgTklo3MW--S-uq1HTz3GZfLSJ0,1283
17
17
  cidc_api/models/db/stage2/adverse_event_orm.py,sha256=eo_6ZTEYdyaiS5EGR_LSWpMvVjuOAjh7KQh3I7JFeuA,1968
@@ -21,7 +21,7 @@ cidc_api/models/db/stage2/cohort_orm.py,sha256=tcUYBMwKPW3anye8uEoDM4BS54pGMOGnb
21
21
  cidc_api/models/db/stage2/comorbidity_orm.py,sha256=2Eb3-OYKn02Sc3ndM49xH2snucjqY2gmjyAP7JYyccc,921
22
22
  cidc_api/models/db/stage2/consent_group_orm.py,sha256=8j0Aa3FX11LHTIOgXdk3zaRwD4tOkvaRovl_CYH_KsM,1103
23
23
  cidc_api/models/db/stage2/contact_orm.py,sha256=lcfMj0LEcaRKdX2ZInx6n8pYd-rNujqLOPgZYna_d_A,1352
24
- cidc_api/models/db/stage2/demographic_orm.py,sha256=Gk3UTVmuKEDGvnl5yOxZYBHz4lKK3vcdLK2Rc2AGszo,1588
24
+ cidc_api/models/db/stage2/demographic_orm.py,sha256=q0mCuMAwZCrhyY-Dam0l4qxRzhdiQbFefMYw0b4YUtk,1609
25
25
  cidc_api/models/db/stage2/disease_orm.py,sha256=3Wue_ZSlUpgjvXK9q3HxbTXytPBV062BRn7YljoMT6M,1977
26
26
  cidc_api/models/db/stage2/exposure_orm.py,sha256=yHalUVz3wlsNIdScN_TEwN8jYexntZkfV3ikvPSyxmY,813
27
27
  cidc_api/models/db/stage2/file_orm.py,sha256=tPElXh7ABhAenZmHbgu2LyrDzKw-VK-tdZ-yxkb_YN8,1296
@@ -32,13 +32,13 @@ cidc_api/models/db/stage2/gvhd_organ_chronic_orm.py,sha256=L5GL-zHkOnkNnUU6ItO8C
32
32
  cidc_api/models/db/stage2/institution_orm.py,sha256=cvNaAbtdFq2WCIVusHlfTjd-mEYBEMaPfkwgxmdfMn8,1246
33
33
  cidc_api/models/db/stage2/medical_history_orm.py,sha256=lZlAhU6jiZiUSlttgj92YekOhzet0BArsrUcTtO0qvE,1307
34
34
  cidc_api/models/db/stage2/other_clinical_endpoint_orm.py,sha256=acBUKPYGceC74JI7r_WNZ_nidnoQZC-PWj_C1qgADSk,1151
35
- cidc_api/models/db/stage2/other_malignancy_orm.py,sha256=4s9F9PjLz31W91RN0zvRbmX6x4vrZ3W1s6h6-Kv1Q1A,1269
36
- cidc_api/models/db/stage2/participant_orm.py,sha256=OZ4iylGCeeximcMgWqviCaHfuMmkbzGJPUTrWiIrwkQ,3768
37
- cidc_api/models/db/stage2/prior_treatment_orm.py,sha256=KeQaijkvPouyf8FYIo6TMMkstXfk2RjwTRZHdAslXNU,1276
35
+ cidc_api/models/db/stage2/other_malignancy_orm.py,sha256=xnqBwARihgu0OOhFRePZ0Lliqv67ECoBoi56uazUK9I,1349
36
+ cidc_api/models/db/stage2/participant_orm.py,sha256=U8tqrvdgKHfHbViRJFOY-uDkut8owFz9WtsNcCgrs9w,3746
37
+ cidc_api/models/db/stage2/prior_treatment_orm.py,sha256=JbftnNys8sMAA-Mfb9hdRxoql0Y-cam-EZyD0YiKIq0,1462
38
38
  cidc_api/models/db/stage2/publication_orm.py,sha256=fBmdxEihYRqqdBGNDdELn6wEZuLxpvIFPtmDTkKbxzc,1100
39
39
  cidc_api/models/db/stage2/radiotherapy_dose_orm.py,sha256=_VV9T0_6h1iHSZnfAPsW3PO0Y-jbJnbwsOT4SbJXPyY,1545
40
- cidc_api/models/db/stage2/response_by_system_orm.py,sha256=HsYtVs7QGw2mqxJeSdrBlraImAwoScqk1dT3UP--7UI,1467
41
- cidc_api/models/db/stage2/response_orm.py,sha256=1xcfM-shreNDokHc4glz8OCHoyNSpBjinxrzLFgbhWM,1169
40
+ cidc_api/models/db/stage2/response_by_system_orm.py,sha256=yujWa9svJdEGTT5xPhng10xBNQo2JAvIsbtXOB4f8dI,1526
41
+ cidc_api/models/db/stage2/response_orm.py,sha256=d-IYXgzFt0RYS7MXtofQ2_WZgduj4W6Sh0QYjlGhoEc,1165
42
42
  cidc_api/models/db/stage2/shipment_orm.py,sha256=u7y6hKtmg6DhW8G_tFHj-gFgsqigd8QPrPZu8ZFeMe4,2042
43
43
  cidc_api/models/db/stage2/shipment_specimen_orm.py,sha256=SiIEi5t-BOISgCEgYM9CGqBmr6iLV3HwqXzrTmjJSv8,913
44
44
  cidc_api/models/db/stage2/specimen_orm.py,sha256=Iv6UomXRvl3Is-TxWFQwafTAfZYRiIW76WPtNoDpuNE,4124
@@ -46,23 +46,23 @@ cidc_api/models/db/stage2/stem_cell_transplant_orm.py,sha256=MkOJCW154T6iK0Pos3n
46
46
  cidc_api/models/db/stage2/surgery_orm.py,sha256=XAkq2HHvi0kmZmJgdvE4obBGcFx0p2Nruj5zrMZvFH8,1057
47
47
  cidc_api/models/db/stage2/therapy_agent_dose_orm.py,sha256=I9fYC-x8jc8XQFFXz4zVFERKac_bVihgp4Q_cHF-Tc0,1348
48
48
  cidc_api/models/db/stage2/treatment_orm.py,sha256=m9udq26_1tQ_xUYHhGsA-pYut9p043zCvDQO5IaPx2o,1963
49
- cidc_api/models/db/stage2/trial_orm.py,sha256=6F9UJdrispKuZtss29nYRVTlYZFTQIvPTuvZ2HOXn5E,2754
49
+ cidc_api/models/db/stage2/trial_orm.py,sha256=XEzOUbdOmipQ-pbEgNfo2IqZFLFb3Ijy-TN38_7k3kE,2869
50
50
  cidc_api/models/files/__init__.py,sha256=8BMTnUSHzUbz0lBeEQY6NvApxDD3GMWMduoVMos2g4Y,213
51
51
  cidc_api/models/files/details.py,sha256=sZkGM7iEV4-J6IDQCdiMV6KBDLbPxCOqUMaU3aY9rX8,65153
52
52
  cidc_api/models/files/facets.py,sha256=rG99wUpHvWHkcRDxTcXz40502Er47l_5hKzP-ORvXGE,33621
53
53
  cidc_api/models/pydantic/stage2/__init__.py,sha256=OQRG5wFkNsyAU_0KI1W5PDn8pBDe1EJDcgKZ19shh_g,2331
54
- cidc_api/models/pydantic/stage2/additional_treatment.py,sha256=5bBcV85oiE-PgmuE1sheuNFcZW41GH-TK4IUxIr3dPk,1078
54
+ cidc_api/models/pydantic/stage2/additional_treatment.py,sha256=zJMEZoqeJ7l5ieNGLmUu7_Ky0YWrFwnXEnskuoIZ0cY,1141
55
55
  cidc_api/models/pydantic/stage2/administrative_person.py,sha256=KgILOkUra-AmqwFlj6XNappfMNi4KuhZ98So1R8p-eY,1528
56
56
  cidc_api/models/pydantic/stage2/administrative_role_assignment.py,sha256=qsdrBJgDA4GWY-1VAFgbgQWfqSjJZ-OFsIOZDT9CyAE,512
57
57
  cidc_api/models/pydantic/stage2/adverse_event.py,sha256=733qhu5uucvMQH_VDFAc1WlWCcusaXXFswrp1ugM7sk,3856
58
58
  cidc_api/models/pydantic/stage2/arm.py,sha256=ApxukGxatxD7rFDIaeiJsPNHw9-b4tfd8nubQ0JuW4g,457
59
- cidc_api/models/pydantic/stage2/base.py,sha256=0KTN8HJrwr8gQ8ORnWh4WQPueWmqlJ6Bl7EPa7sr3J4,1333
59
+ cidc_api/models/pydantic/stage2/base.py,sha256=Wgya-O1q9lnDBGx8XkgC5NXMNYauDf486s1ZoQSLp64,1397
60
60
  cidc_api/models/pydantic/stage2/baseline_clinical_assessment.py,sha256=mDTzHT6IsQRy5aTMCSK3twqe3jiYtvZ9D7ZO6hVO3KM,1095
61
61
  cidc_api/models/pydantic/stage2/cohort.py,sha256=-ikJ35QR7JjNfWMv_OFvIqxBVK8zr3nT39Q90UustWk,469
62
62
  cidc_api/models/pydantic/stage2/comorbidity.py,sha256=avCl_9zrM7nzsR0E_g6fMjlQG8qE109NSR_nGGxEKqg,1389
63
63
  cidc_api/models/pydantic/stage2/consent_group.py,sha256=ldIfJUk6DLCj24Vs_tOXUp_6mpncx63j_yL90jNtwvI,1192
64
64
  cidc_api/models/pydantic/stage2/contact.py,sha256=pRKcv34MWMN3WrRD5WmHDoCprzRnIyC5fDMb1qDhHMk,859
65
- cidc_api/models/pydantic/stage2/demographic.py,sha256=dZO6LoxxCBIUMNqnJCTCZrrPil6vE6nTXymfz4B8gls,5597
65
+ cidc_api/models/pydantic/stage2/demographic.py,sha256=ROA9C7r9xviMz91Bb3l9XAilVURTzws5O-vJNYMOvfU,5983
66
66
  cidc_api/models/pydantic/stage2/disease.py,sha256=4qxud-X0yegT4pvU5_Dj8YwwsANHzxbqkH7XFYfrkAE,7626
67
67
  cidc_api/models/pydantic/stage2/exposure.py,sha256=PNqslfg36tphxz8sM51pu0CB6wAULzYQuEDRAS7AcHU,1282
68
68
  cidc_api/models/pydantic/stage2/file.py,sha256=lWVLS763at46OsNX6xOIUEkV2V69yjeVPJXIIwvXl5o,1312
@@ -73,13 +73,13 @@ cidc_api/models/pydantic/stage2/gvhd_organ_chronic.py,sha256=sCphdwBgidbZxPRQr9C
73
73
  cidc_api/models/pydantic/stage2/institution.py,sha256=L7YLzPQzXP_WxfxonhE50soubB13b30M0LiPU8JiIOY,244
74
74
  cidc_api/models/pydantic/stage2/medical_history.py,sha256=jC1eRsXdYXwrlBFDrXaiCwgkHoATzSR9krLbMwsjdUA,1673
75
75
  cidc_api/models/pydantic/stage2/other_clinical_endpoint.py,sha256=hn_Ngjl1ZD-IsmO_dFFcohsyJL8gmBKCCPBpXljoHqc,1069
76
- cidc_api/models/pydantic/stage2/other_malignancy.py,sha256=eR5tVylBVSjy2r2BUg98mXrf1Mbo03LZe6RcDx7DhX4,1996
76
+ cidc_api/models/pydantic/stage2/other_malignancy.py,sha256=h5gbGAwXdGBGcJk3bAUMnWfioBCzPaMDWRZNAKIySsM,2164
77
77
  cidc_api/models/pydantic/stage2/participant.py,sha256=GS-_o3FG3sFLOn3rm9okAwKffjGjzzao4JAPi2AQDbI,2085
78
- cidc_api/models/pydantic/stage2/prior_treatment.py,sha256=-Ty2XTrfFxAOGVGlrXxx5z5NI4wyMROAWe__nEXBbiw,2248
78
+ cidc_api/models/pydantic/stage2/prior_treatment.py,sha256=kc8i_17pwNRPGmPiCC_yEyABvoLmIZDZKMfjSzvRNP0,2467
79
79
  cidc_api/models/pydantic/stage2/publication.py,sha256=C8o2jxooZ8ykmUWrMkWDw5CGIEOeK-8Rgitoac9MKs0,1793
80
80
  cidc_api/models/pydantic/stage2/radiotherapy_dose.py,sha256=kfEqfJwBG7TCGupSGMdDpmZ4HGYsdqRDHIgIAzTXEVk,3303
81
- cidc_api/models/pydantic/stage2/response.py,sha256=kASwYxi9zbuqCSh6FR2BA-er-VGwP23s1_NRmA4Khoo,3118
82
- cidc_api/models/pydantic/stage2/response_by_system.py,sha256=YIBoC2GBBordRIU3Sc7uH5OZNBAV8DenNYDXU8svbpA,4707
81
+ cidc_api/models/pydantic/stage2/response.py,sha256=N7YKlbLxQVi_0FkgtHwNWQb_BOvx9S1LCOdK9vanjiw,2838
82
+ cidc_api/models/pydantic/stage2/response_by_system.py,sha256=ZUtKTAReu4mh4RW_O0UDgpNabYsf7HB3LsP3TdwFcE8,4885
83
83
  cidc_api/models/pydantic/stage2/shipment.py,sha256=leRVcQyEkgX2G5jqn0QmSbmIYqiM8W7OE362xLGwEOM,1571
84
84
  cidc_api/models/pydantic/stage2/shipment_specimen.py,sha256=LJglK70mbENQ8lwWe8EJTNYoJSGNXkFUHf7yAMY1zso,464
85
85
  cidc_api/models/pydantic/stage2/specimen.py,sha256=aMxvPmKH6Ij3rPOejpCc2RvDBYRslz_DjzUq1iRIts8,8352
@@ -87,7 +87,7 @@ cidc_api/models/pydantic/stage2/stem_cell_transplant.py,sha256=RnMKMbydxSX4NRyJf
87
87
  cidc_api/models/pydantic/stage2/surgery.py,sha256=OOMDGIt0XA4HHXiQjGTVb0zIsQR9uKH1M9GxUOPH5iA,2125
88
88
  cidc_api/models/pydantic/stage2/therapy_agent_dose.py,sha256=LgmDXBpDVIR3BxZDHZs4ruX5tSotfan-pU2CUPzddf0,2997
89
89
  cidc_api/models/pydantic/stage2/treatment.py,sha256=x_WluGqNsNI4RUdnXeqLt6_ABzRlRX6hjv0LDOgGzz4,2015
90
- cidc_api/models/pydantic/stage2/trial.py,sha256=O3PLFh95aZsgOF_V96gP6FsrDazn6v7RD7Nse0Vje9g,3539
90
+ cidc_api/models/pydantic/stage2/trial.py,sha256=dMPvHxbgLueWyvxW15CHnsoXGzPNbydqgoDyGyVrFCU,3996
91
91
  cidc_api/reference/ctcae.py,sha256=H5JvDQ5R5kYbK37UxjhmXMnKD3d40HmG0DONxfhNxnE,871
92
92
  cidc_api/reference/gvhd.py,sha256=r5jbHEa5yos0tmghjiruAeXI-r-4lU81JKCUpMHtO14,194
93
93
  cidc_api/reference/icd10cm.py,sha256=K1vbTQB75uAQeKgj0U9izhtMKVb2vqp69_hyx3z_jro,300
@@ -102,8 +102,8 @@ cidc_api/shared/gcloud_client.py,sha256=ovXGS2ynaBgB_23prj23H10GNN4fectiVF7Hj4LJ
102
102
  cidc_api/shared/jose.py,sha256=-qzGzEDAlokEp9E7WtBtQkXyyfPWTYXlwYpCqVJWmqM,1830
103
103
  cidc_api/shared/rest_utils.py,sha256=RwR30WOUAYCxL7V-i2totEyeriG30GbBDvBcpLXhM9w,6594
104
104
  cidc_api/shared/utils.py,sha256=FdZJiynmh6BIzWyCTcUAcUMKCAtzEyp_HLdXEticNcI,237
105
- nci_cidc_api_modules-1.2.30.dist-info/licenses/LICENSE,sha256=pNYWVTHaYonnmJyplmeAp7tQAjosmDpAWjb34jjv7Xs,1102
106
- nci_cidc_api_modules-1.2.30.dist-info/METADATA,sha256=UKoLBKoBadpOOjKlpGCqBeIOpHmWrXcU1safhHNbnfA,39762
107
- nci_cidc_api_modules-1.2.30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
- nci_cidc_api_modules-1.2.30.dist-info/top_level.txt,sha256=rNiRzL0lJGi5Q9tY9uSoMdTbJ-7u5c_D2E86KA94yRA,9
109
- nci_cidc_api_modules-1.2.30.dist-info/RECORD,,
105
+ nci_cidc_api_modules-1.2.32.dist-info/licenses/LICENSE,sha256=pNYWVTHaYonnmJyplmeAp7tQAjosmDpAWjb34jjv7Xs,1102
106
+ nci_cidc_api_modules-1.2.32.dist-info/METADATA,sha256=8JDKaWWR-K_9Xx2sldOGiF6_c7-mTqO5-pIVT_V0Rrk,39762
107
+ nci_cidc_api_modules-1.2.32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
+ nci_cidc_api_modules-1.2.32.dist-info/top_level.txt,sha256=rNiRzL0lJGi5Q9tY9uSoMdTbJ-7u5c_D2E86KA94yRA,9
109
+ nci_cidc_api_modules-1.2.32.dist-info/RECORD,,