nci-cidc-api-modules 1.2.22__py3-none-any.whl → 1.2.24__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.
Files changed (81) hide show
  1. cidc_api/models/db/stage2/__init__.py +78 -0
  2. cidc_api/models/db/stage2/additional_treatment_orm.py +22 -0
  3. cidc_api/models/db/stage2/administrative_person_orm.py +25 -0
  4. cidc_api/models/db/stage2/administrative_role_assignment_orm.py +28 -0
  5. cidc_api/models/db/stage2/adverse_event_orm.py +47 -0
  6. cidc_api/models/db/stage2/arm_orm.py +23 -0
  7. cidc_api/models/db/stage2/baseline_clinical_assessment_orm.py +23 -0
  8. cidc_api/models/db/stage2/cohort_orm.py +23 -0
  9. cidc_api/models/db/stage2/comorbidity_orm.py +24 -0
  10. cidc_api/models/db/stage2/consent_group_orm.py +31 -0
  11. cidc_api/models/db/stage2/contact_orm.py +32 -0
  12. cidc_api/models/db/stage2/demographic_orm.py +44 -0
  13. cidc_api/models/db/stage2/disease_orm.py +53 -0
  14. cidc_api/models/db/stage2/exposure_orm.py +21 -0
  15. cidc_api/models/db/stage2/file_orm.py +38 -0
  16. cidc_api/models/db/stage2/gvhd_diagnosis_acute_orm.py +33 -0
  17. cidc_api/models/db/stage2/gvhd_diagnosis_chronic_orm.py +37 -0
  18. cidc_api/models/db/stage2/gvhd_organ_acute_orm.py +20 -0
  19. cidc_api/models/db/stage2/gvhd_organ_chronic_orm.py +20 -0
  20. cidc_api/models/db/stage2/institution_orm.py +33 -0
  21. cidc_api/models/db/stage2/medical_history_orm.py +29 -0
  22. cidc_api/models/db/stage2/other_clinical_endpoint_orm.py +28 -0
  23. cidc_api/models/db/stage2/other_malignancy_orm.py +30 -0
  24. cidc_api/models/db/stage2/participant_orm.py +79 -0
  25. cidc_api/models/db/stage2/prior_treatment_orm.py +28 -0
  26. cidc_api/models/db/stage2/publication_orm.py +31 -0
  27. cidc_api/models/db/stage2/radiotherapy_dose_orm.py +39 -0
  28. cidc_api/models/db/stage2/response_by_system_orm.py +28 -0
  29. cidc_api/models/db/stage2/response_orm.py +27 -0
  30. cidc_api/models/db/stage2/shipment_orm.py +47 -0
  31. cidc_api/models/db/stage2/shipment_specimen_orm.py +24 -0
  32. cidc_api/models/db/stage2/specimen_orm.py +100 -0
  33. cidc_api/models/db/stage2/stem_cell_transplant_orm.py +25 -0
  34. cidc_api/models/db/stage2/surgery_orm.py +27 -0
  35. cidc_api/models/db/stage2/therapy_agent_dose_orm.py +31 -0
  36. cidc_api/models/db/stage2/treatment_orm.py +39 -0
  37. cidc_api/models/db/stage2/trial_orm.py +60 -0
  38. cidc_api/models/pydantic/stage2/__init__.py +78 -0
  39. cidc_api/models/pydantic/stage2/additional_treatment.py +23 -0
  40. cidc_api/models/pydantic/stage2/administrative_person.py +30 -0
  41. cidc_api/models/pydantic/stage2/administrative_role_assignment.py +16 -0
  42. cidc_api/models/pydantic/stage2/adverse_event.py +100 -0
  43. cidc_api/models/pydantic/stage2/arm.py +16 -0
  44. cidc_api/models/pydantic/stage2/base.py +30 -0
  45. cidc_api/models/pydantic/stage2/baseline_clinical_assessment.py +23 -0
  46. cidc_api/models/pydantic/stage2/cohort.py +16 -0
  47. cidc_api/models/pydantic/stage2/comorbidity.py +36 -0
  48. cidc_api/models/pydantic/stage2/consent_group.py +30 -0
  49. cidc_api/models/pydantic/stage2/contact.py +35 -0
  50. cidc_api/models/pydantic/stage2/demographic.py +114 -0
  51. cidc_api/models/pydantic/stage2/disease.py +144 -0
  52. cidc_api/models/pydantic/stage2/exposure.py +32 -0
  53. cidc_api/models/pydantic/stage2/file.py +44 -0
  54. cidc_api/models/pydantic/stage2/gvhd_diagnosis_acute.py +33 -0
  55. cidc_api/models/pydantic/stage2/gvhd_diagnosis_chronic.py +32 -0
  56. cidc_api/models/pydantic/stage2/gvhd_organ_acute.py +22 -0
  57. cidc_api/models/pydantic/stage2/gvhd_organ_chronic.py +23 -0
  58. cidc_api/models/pydantic/stage2/institution.py +10 -0
  59. cidc_api/models/pydantic/stage2/medical_history.py +36 -0
  60. cidc_api/models/pydantic/stage2/other_clinical_endpoint.py +32 -0
  61. cidc_api/models/pydantic/stage2/other_malignancy.py +45 -0
  62. cidc_api/models/pydantic/stage2/participant.py +47 -0
  63. cidc_api/models/pydantic/stage2/prior_treatment.py +52 -0
  64. cidc_api/models/pydantic/stage2/publication.py +37 -0
  65. cidc_api/models/pydantic/stage2/radiotherapy_dose.py +79 -0
  66. cidc_api/models/pydantic/stage2/response.py +71 -0
  67. cidc_api/models/pydantic/stage2/response_by_system.py +109 -0
  68. cidc_api/models/pydantic/stage2/shipment.py +48 -0
  69. cidc_api/models/pydantic/stage2/shipment_specimen.py +15 -0
  70. cidc_api/models/pydantic/stage2/specimen.py +211 -0
  71. cidc_api/models/pydantic/stage2/stem_cell_transplant.py +35 -0
  72. cidc_api/models/pydantic/stage2/surgery.py +49 -0
  73. cidc_api/models/pydantic/stage2/therapy_agent_dose.py +67 -0
  74. cidc_api/models/pydantic/stage2/treatment.py +50 -0
  75. cidc_api/models/pydantic/stage2/trial.py +85 -0
  76. {nci_cidc_api_modules-1.2.22.dist-info → nci_cidc_api_modules-1.2.24.dist-info}/METADATA +1 -1
  77. nci_cidc_api_modules-1.2.24.dist-info/RECORD +104 -0
  78. nci_cidc_api_modules-1.2.22.dist-info/RECORD +0 -29
  79. {nci_cidc_api_modules-1.2.22.dist-info → nci_cidc_api_modules-1.2.24.dist-info}/WHEEL +0 -0
  80. {nci_cidc_api_modules-1.2.22.dist-info → nci_cidc_api_modules-1.2.24.dist-info}/licenses/LICENSE +0 -0
  81. {nci_cidc_api_modules-1.2.22.dist-info → nci_cidc_api_modules-1.2.24.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,67 @@
1
+ from typing import Self
2
+
3
+ from pydantic import NonNegativeInt, NonNegativeFloat, PositiveFloat, model_validator
4
+
5
+ from .base import Base
6
+ from cidc_api.models.types import YNU, TherapyAgentDoseUnits
7
+
8
+
9
+ class TherapyAgentDose(Base):
10
+ __data_category__ = "therapy_agent_dose"
11
+ __cardinality__ = "many"
12
+
13
+ # The unique internal identifier for the therapy agent dose record
14
+ therapy_agent_dose_id: int | None = None
15
+
16
+ # The unique internal identifier for the associated treatment record
17
+ treatment_id: int | None = None
18
+
19
+ # A numeric identifier used to indicate a specific course or cycle of treatment.
20
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16391085%20and%20ver_nr=1
21
+ course_number: str | None = None
22
+
23
+ # The full generic name of the therapeutic agent, if available, as captured in the Pharmacological
24
+ # Substance (C1909) branch of the National Cancer Institute Thesaurus (NCIt).
25
+ therapy_agent_name: str
26
+
27
+ # Number of days from the enrollment date to the start date of the therapy dose.
28
+ days_to_start: NonNegativeInt
29
+
30
+ # Number of days from enrollment date to the end date of the therapy dose.
31
+ days_to_end: NonNegativeInt
32
+
33
+ # Number of individual doses the patient received of the therapy agent.
34
+ number_of_doses: NonNegativeInt
35
+
36
+ # The amount that represents the dose of the therapy agent received by the participant.
37
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2182728%20and%20ver_nr=3
38
+ received_dose: NonNegativeFloat
39
+
40
+ # Unit of measure for the dose of the agent received by the participant.
41
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2321160%20and%20ver_nr=4
42
+ received_dose_units: TherapyAgentDoseUnits
43
+
44
+ # The amount that represents the planned dose of the therapy agent to be received by the participant.
45
+ planned_dose: PositiveFloat | None = None
46
+
47
+ # Unit of measure for the planned dose of the agent to be received by the participant.
48
+ # TODO: This CDE will probably be 2321160 but needs to be finalized with Janice
49
+ planned_dose_units: TherapyAgentDoseUnits | None = None
50
+
51
+ # Indicates if the therapy agent dose was changed, missed, or delayed.
52
+ dose_changes_delays: YNU
53
+
54
+ # Description of the dose changes, misses, or delays.
55
+ changes_delays_description: str | None = None
56
+
57
+ @model_validator(mode="after")
58
+ def validate_changes_delays_description_cr(self) -> Self:
59
+ if self.dose_changes_delays == "Yes" and not self.changes_delays_description:
60
+ raise ValueError('If dose_changes_delays is "Yes", please provide changes_delays_description.')
61
+ return self
62
+
63
+ @model_validator(mode="after")
64
+ def validate_planned_dose_units_cr(self) -> Self:
65
+ if self.planned_dose and not self.planned_dose_units:
66
+ raise ValueError("If planned_dose is provided, please provide planned_dose_units.")
67
+ return self
@@ -0,0 +1,50 @@
1
+ from typing import Self
2
+
3
+ from pydantic import model_validator
4
+
5
+ from .base import Base
6
+ from cidc_api.models.types import YNU, OffTreatmentReason
7
+
8
+
9
+ class Treatment(Base):
10
+ __data_category__ = "treatment"
11
+ __cardinality__ = "many"
12
+
13
+ # The unique internal identifier for the Treatment record
14
+ treatment_id: int | None = None
15
+
16
+ # The unique internal identifier for the associated Participant record
17
+ participant_id: int | None = None
18
+
19
+ # The unique internal identifier for the associated Arm record
20
+ arm_id: int | None = None
21
+
22
+ # The unique internal identifier for the associated Cohort record
23
+ cohort_id: int | None = None
24
+
25
+ # A unique identifier used to describe a distinct, specific intervention or
26
+ # treatment that a group or subgroup of participants in a clinical trial receives.
27
+ treatment_description: str
28
+
29
+ # Indicates if the participant has stopped receiving this particular treatment at
30
+ # the time of data submission.
31
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16391087%20and%20ver_nr=1
32
+ off_treatment: YNU
33
+
34
+ # An explanation describing why an individual is no longer receiving this particular treatment.
35
+ off_treatment_reason: OffTreatmentReason | None = None
36
+
37
+ # If "Other" is selected for "off_treatment_reason", provide a description of the reason.
38
+ off_treatment_reason_other: str | None = None
39
+
40
+ @model_validator(mode="after")
41
+ def validate_off_treatment_reason_cr(self) -> Self:
42
+ if self.off_treatment == "Yes" and not self.off_treatment_reason:
43
+ raise ValueError('If off_treatment is "Yes", please provide off_treatment_reason.')
44
+ return self
45
+
46
+ @model_validator(mode="after")
47
+ def validate_off_treatment_reason_other_cr(self) -> Self:
48
+ if self.off_treatment_reason == "Other" and not self.off_treatment_reason_other:
49
+ raise ValueError('If off_treatment_reason is "Other", please provide off_treatment_reason_other.')
50
+ return self
@@ -0,0 +1,85 @@
1
+ from datetime import datetime
2
+ from typing import List
3
+
4
+ from .base import Base
5
+ from cidc_api.models.types import TrialOrganization, TrialFundingAgency, TrialStatus, AssayType
6
+
7
+
8
+ class Trial(Base):
9
+ __data_category__ = "study"
10
+ __cardinality__ = None
11
+
12
+ # The unique identifier for the clinical trial. e.g. "GU16-287","BACCI"
13
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=5054234%20and%20ver_nr=1
14
+ trial_id: str
15
+
16
+ # The version number of the trial dataset. e.g. "1.0"
17
+ version: str | None = None
18
+
19
+ # ClinicalTrials.gov identifier. e.g. "NCT03731260"
20
+ # TODO need cde from janice, they will make one
21
+ nct_id: str | None = None
22
+
23
+ # NCI Trial Identifier. e.g. NCI22345
24
+ # TODO need cde from janice, they will make one
25
+ nci_id: str | None = None
26
+
27
+ # The short name for the trial
28
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11459810%20and%20ver_nr=4
29
+ trial_name: str | None = None
30
+
31
+ # The type of clinical trial conducted
32
+ trial_type: str | None = None
33
+
34
+ # The long description of the trial name and purpose. e.g. "BACCI: A Phase II Randomized, Double-Blind,
35
+ # Placebo-Controlled Study of Capecitabine Bevacizumab plus Atezolizumab versus Capecitabine Bevacizumab
36
+ # plus Placebo in Patients with Refractory Metastatic Colorectal Cancer"
37
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16188024%20and%20ver_nr=1
38
+ trial_description: str | None = None
39
+
40
+ # Name of the primary organization that oversees the clinical trial. e.g. "ECOG-ACRIN", "SWOG"
41
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=3938773%20and%20ver_nr=2
42
+ trial_organization: TrialOrganization | None = None
43
+
44
+ # The primary organization providing grant funding and supporting the trial.
45
+ # e.g. "Duke University - Duke Cancer Institute LAO"
46
+ grant_or_affiliated_network: TrialFundingAgency | None = None
47
+
48
+ # What stage the trial is at in its process.
49
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=15607838%20and%20ver_nr=1
50
+ trial_status: TrialStatus
51
+
52
+ # The id of the primary organization responsible for storing biospecimens from this study.
53
+ biobank_institution_id: int | None = None
54
+
55
+ # A description of the reasons why this study could provide insight into molecular biomarkers of immunotherapy.
56
+ justification: str | None = None
57
+
58
+ # The official day that study activity began
59
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16333702%20and%20ver_nr=1
60
+ dates_of_conduct_start: datetime
61
+
62
+ # The official day that study activity ended
63
+ # CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16333703%20and%20ver_nr=1
64
+ dates_of_conduct_end: datetime | None = None
65
+
66
+ # The image of the trial data schema
67
+ schema_file_id: int | None = None
68
+
69
+ # The description of the objectives and hypotheses for the proposed biomarkers.
70
+ biomarker_plan: str | None = None
71
+
72
+ # The description of the rules governing data sharing and publications.
73
+ data_sharing_plan: str | None = None
74
+
75
+ # The list of assays that CIDC expects to receive for this trial.
76
+ expected_assays: List[AssayType] = []
77
+
78
+ # Is the cancer studying a liquid tumor type?
79
+ is_liquid_tumor_trial: bool = False
80
+
81
+ # The dbgap study accession number associated with the trial.
82
+ dbgap_study_accession: str | None = None
83
+
84
+ # The internal version identifier for this specific trial dataset.
85
+ version: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nci_cidc_api_modules
3
- Version: 1.2.22
3
+ Version: 1.2.24
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
@@ -0,0 +1,104 @@
1
+ cidc_api/config/__init__.py,sha256=5mX8GAPxUKV84iS-aGOoE-4m68LsOCGCDptXNdlgvj0,148
2
+ cidc_api/config/db.py,sha256=CRgpyw7uVP9v7CTAa7_1dcXURqrfjRcLNjGgZC7iPQE,1627
3
+ cidc_api/config/logging.py,sha256=abhVYtn8lfhIt0tyV2WHFgSmp_s2eeJh7kodB6LH4J0,1149
4
+ cidc_api/config/secrets.py,sha256=jRFj7W43pWuPf9DZQLCKF7WPXf5cUv-BAaS3ASqhV_Q,1481
5
+ cidc_api/config/settings.py,sha256=ttOGvk_6zVMn4dtxIZ2-0w3wF2fpAUVfGpVZbKJ2b6s,4653
6
+ cidc_api/models/__init__.py,sha256=cTyK0Z1ttLo9itwZVRFr-d6aX-zX633YhqipqPgoGfE,115
7
+ cidc_api/models/data.py,sha256=evv9JJcW3U_g-74MgKdxtB_gGJBTRQjtnsVKwa3DzFE,638
8
+ cidc_api/models/migrations.py,sha256=UlS5How3J4ryaRuZT6F5VQtAKikkl0LTv9MgMO_ltiQ,11161
9
+ cidc_api/models/models.py,sha256=2ENATE2dbl93uaKSqveqAVuhv1SvxOkcw4pWDTolng0,148484
10
+ cidc_api/models/schemas.py,sha256=6IE2dJoEMcMbi0Vr1V3cYKnPKU0hv9vRKBixOZHe88s,2766
11
+ cidc_api/models/types.py,sha256=9dInLZ6gN39zhEe3xhBXyz2xVMr11CeE1-GCOmT_OjY,29928
12
+ cidc_api/models/db/base_orm.py,sha256=EV78qFBcOR7spK_PhjbkpsGcmcP33AQItX61SidDa_8,813
13
+ cidc_api/models/db/stage2/__init__.py,sha256=R33BM1VDKJya5uuyYnPoGFVfhSViclIOklSoHH-EtBQ,2691
14
+ cidc_api/models/db/stage2/additional_treatment_orm.py,sha256=THBNW7X6h5IyhFrKOCo81fUEgRDFV6NoBmS34740B3s,865
15
+ cidc_api/models/db/stage2/administrative_person_orm.py,sha256=erXyILdFI7o0RrCW0jB9dyGP6Kdz4vCSXM49EVhA_hQ,1020
16
+ cidc_api/models/db/stage2/administrative_role_assignment_orm.py,sha256=a8GN66njTPZb3HQAxgTklo3MW--S-uq1HTz3GZfLSJ0,1283
17
+ cidc_api/models/db/stage2/adverse_event_orm.py,sha256=TfyfyKM-3QBc9BHMSdS1L4hH-esXiQWtw0VnpzXZadM,1928
18
+ cidc_api/models/db/stage2/arm_orm.py,sha256=YAX1NhA3kiQLzT582G6wDawWv6qor--B_GkIRe4LQDs,697
19
+ cidc_api/models/db/stage2/baseline_clinical_assessment_orm.py,sha256=Y0hIyhO9hZ6CHn3ZaPtyppBs02LzXoTvZbBhuvikpmw,893
20
+ cidc_api/models/db/stage2/cohort_orm.py,sha256=tcUYBMwKPW3anye8uEoDM4BS54pGMOGnbjlEleZozSI,700
21
+ cidc_api/models/db/stage2/comorbidity_orm.py,sha256=9YQI_7PJUvcOvi6b3w6z6Kedi4UxaT9WE17eojl7kCA,883
22
+ cidc_api/models/db/stage2/consent_group_orm.py,sha256=KFHD9HSGfmQnhjlPMZPZ7nwOcsxw5CisKqfK1lWtql4,1063
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=GspDappa5hgOIu3o9BSjQSM7kBZViYcZIHpNa3ZLaqo,1551
25
+ cidc_api/models/db/stage2/disease_orm.py,sha256=xXh77B70DpEkdQzSCqlQL6y3uOXOGP1YbPsxwEWfhco,1995
26
+ cidc_api/models/db/stage2/exposure_orm.py,sha256=CFYCgtEM07QwSaa2frRLq2beClsAXbG2pekUz_-B74Q,771
27
+ cidc_api/models/db/stage2/file_orm.py,sha256=tPElXh7ABhAenZmHbgu2LyrDzKw-VK-tdZ-yxkb_YN8,1296
28
+ cidc_api/models/db/stage2/gvhd_diagnosis_acute_orm.py,sha256=meqNKGmbJh7cUBlzyzRqxvu9ChvyDF0JICj7GyO8vDs,1415
29
+ cidc_api/models/db/stage2/gvhd_diagnosis_chronic_orm.py,sha256=Ff6a5HRYbdBMnV_riYAF2btE52E5wXOo40HV0cDXHmc,1509
30
+ cidc_api/models/db/stage2/gvhd_organ_acute_orm.py,sha256=DNzR2LmGu5IeS6iIkAL-AXEEj8ot0fIoQAS7m2giOy4,797
31
+ cidc_api/models/db/stage2/gvhd_organ_chronic_orm.py,sha256=-IeTmLVB4jJYgzF2BN8PdaVou_OrxjDB2O4xzGd_So8,819
32
+ cidc_api/models/db/stage2/institution_orm.py,sha256=cvNaAbtdFq2WCIVusHlfTjd-mEYBEMaPfkwgxmdfMn8,1246
33
+ cidc_api/models/db/stage2/medical_history_orm.py,sha256=TABx11mdwEJtUpoo8g1FBzoTTj6NT0sa_VVyVwdYzEM,1265
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=kUs5fLeGpDC1gNi8wDqWQ6yEWzCsujK_mhPmx0YXCIs,1226
36
+ cidc_api/models/db/stage2/participant_orm.py,sha256=yVrOxKDDMJ_FCs1owt4nZXMALQxzeNZ79RoVzF7K_A8,3719
37
+ cidc_api/models/db/stage2/prior_treatment_orm.py,sha256=RcKjYTNutWb1iIbWkHofV1ckr9wxs4A17UzV5BdqEpo,1234
38
+ cidc_api/models/db/stage2/publication_orm.py,sha256=fBmdxEihYRqqdBGNDdELn6wEZuLxpvIFPtmDTkKbxzc,1100
39
+ cidc_api/models/db/stage2/radiotherapy_dose_orm.py,sha256=UlvNsWTrdDHg1Bdm4yphPN4ntY4BAlTOgYWYU4bWPuA,1501
40
+ cidc_api/models/db/stage2/response_by_system_orm.py,sha256=w8Loh5Z1mbu6NoJNPHX6Mr4Sx6g6i0M7UPqxps2zdDw,1422
41
+ cidc_api/models/db/stage2/response_orm.py,sha256=QsKa0cbI4DlCRy_dilfo5AWZttdGkDS3NVbQVK0n7LU,1134
42
+ cidc_api/models/db/stage2/shipment_orm.py,sha256=u7y6hKtmg6DhW8G_tFHj-gFgsqigd8QPrPZu8ZFeMe4,2042
43
+ cidc_api/models/db/stage2/shipment_specimen_orm.py,sha256=SiIEi5t-BOISgCEgYM9CGqBmr6iLV3HwqXzrTmjJSv8,913
44
+ cidc_api/models/db/stage2/specimen_orm.py,sha256=Iv6UomXRvl3Is-TxWFQwafTAfZYRiIW76WPtNoDpuNE,4124
45
+ cidc_api/models/db/stage2/stem_cell_transplant_orm.py,sha256=G59Wm-RjOavNc6d5-wW43Z2hteaY7g8NfWGIADC1D74,1077
46
+ cidc_api/models/db/stage2/surgery_orm.py,sha256=Jo5abObgZfkEkiMGKFuNGzOWqVwNSGTUdtbfS1VPxRo,1023
47
+ cidc_api/models/db/stage2/therapy_agent_dose_orm.py,sha256=dgLZnWjt5RRGE7OkMis_tUUEsBvK9eZwHa_6IFMDf_g,1303
48
+ cidc_api/models/db/stage2/treatment_orm.py,sha256=-SW99MTRDM2Qou0Dsv_fIAsDvj322_5CPgDPgT9FAlQ,1927
49
+ cidc_api/models/db/stage2/trial_orm.py,sha256=JOA9dA8UXMkB04gBH3huepvSpTdn3DSJzKH-jyCJCRY,2773
50
+ cidc_api/models/files/__init__.py,sha256=8BMTnUSHzUbz0lBeEQY6NvApxDD3GMWMduoVMos2g4Y,213
51
+ cidc_api/models/files/details.py,sha256=sZkGM7iEV4-J6IDQCdiMV6KBDLbPxCOqUMaU3aY9rX8,65153
52
+ cidc_api/models/files/facets.py,sha256=BGx6FeQkK-ujCs-0Y8dUlba8uOmXgAqdY5u1EQqOnFM,33612
53
+ cidc_api/models/pydantic/stage2/__init__.py,sha256=OQRG5wFkNsyAU_0KI1W5PDn8pBDe1EJDcgKZ19shh_g,2331
54
+ cidc_api/models/pydantic/stage2/additional_treatment.py,sha256=HlsexyUh38hW9CTT3cxP6A9xeHa5JX8Cwvh5fi4MH9s,963
55
+ cidc_api/models/pydantic/stage2/administrative_person.py,sha256=KgILOkUra-AmqwFlj6XNappfMNi4KuhZ98So1R8p-eY,1528
56
+ cidc_api/models/pydantic/stage2/administrative_role_assignment.py,sha256=qsdrBJgDA4GWY-1VAFgbgQWfqSjJZ-OFsIOZDT9CyAE,512
57
+ cidc_api/models/pydantic/stage2/adverse_event.py,sha256=7fGeczRqw2sFK-QMWWIJFhgtYROMkf5w4jTfmAh0_cg,3856
58
+ cidc_api/models/pydantic/stage2/arm.py,sha256=ApxukGxatxD7rFDIaeiJsPNHw9-b4tfd8nubQ0JuW4g,457
59
+ cidc_api/models/pydantic/stage2/base.py,sha256=AhlFc9qwc8HIRgrxN944DAhugS-FfTGsyQ4YivdT2Ds,951
60
+ cidc_api/models/pydantic/stage2/baseline_clinical_assessment.py,sha256=ajPQkgWndWz1o6xFn6VYSPTvXKT9CaHBR5l0GyqhCG8,1095
61
+ cidc_api/models/pydantic/stage2/cohort.py,sha256=-ikJ35QR7JjNfWMv_OFvIqxBVK8zr3nT39Q90UustWk,469
62
+ cidc_api/models/pydantic/stage2/comorbidity.py,sha256=avCl_9zrM7nzsR0E_g6fMjlQG8qE109NSR_nGGxEKqg,1389
63
+ cidc_api/models/pydantic/stage2/consent_group.py,sha256=ldIfJUk6DLCj24Vs_tOXUp_6mpncx63j_yL90jNtwvI,1192
64
+ cidc_api/models/pydantic/stage2/contact.py,sha256=pRKcv34MWMN3WrRD5WmHDoCprzRnIyC5fDMb1qDhHMk,859
65
+ cidc_api/models/pydantic/stage2/demographic.py,sha256=6voG-QXK1q89TtTfS9S3CLiEUPWEn4ZXbmlu3_pH8nU,5461
66
+ cidc_api/models/pydantic/stage2/disease.py,sha256=-K8HscdLbQ2Cr9NpLqri4R8jB0FAw7Ed-W7KJSZkXdM,6960
67
+ cidc_api/models/pydantic/stage2/exposure.py,sha256=Klpw7WrMVQabfBUFWVPIiOQexCoD05uTHauGxLGl8Lw,1268
68
+ cidc_api/models/pydantic/stage2/file.py,sha256=lWVLS763at46OsNX6xOIUEkV2V69yjeVPJXIIwvXl5o,1312
69
+ cidc_api/models/pydantic/stage2/gvhd_diagnosis_acute.py,sha256=x_koFtb99nQcnzuQxIvuPsZClUozorsZf8w8oHspt5E,1371
70
+ cidc_api/models/pydantic/stage2/gvhd_diagnosis_chronic.py,sha256=KMNanB40GNdNYDeRgctq3Fm3okT77ypq4kcfw_rVpwc,1358
71
+ cidc_api/models/pydantic/stage2/gvhd_organ_acute.py,sha256=WY2pXpNmXTnAxpumxomv3bQmx7GjKRCDNeOLYpgssF8,747
72
+ cidc_api/models/pydantic/stage2/gvhd_organ_chronic.py,sha256=sCphdwBgidbZxPRQr9CGRmU9-RGwy13d2UPoVR-7BcY,786
73
+ cidc_api/models/pydantic/stage2/institution.py,sha256=L7YLzPQzXP_WxfxonhE50soubB13b30M0LiPU8JiIOY,244
74
+ cidc_api/models/pydantic/stage2/medical_history.py,sha256=uSp9tDp_7Xa5tU_18hkpJQ-HPJUuqjciDZARTERM2bs,1673
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
77
+ cidc_api/models/pydantic/stage2/participant.py,sha256=W3T5P8B4b9J5dQFZcc-90XTSXzRqdjp0jaLZfMRcF5c,2011
78
+ cidc_api/models/pydantic/stage2/prior_treatment.py,sha256=ZLb3MMRb0yWHhf4Tq5WwEMYsLDmrQUV3De7egIZm6_Y,2248
79
+ cidc_api/models/pydantic/stage2/publication.py,sha256=C8o2jxooZ8ykmUWrMkWDw5CGIEOeK-8Rgitoac9MKs0,1793
80
+ cidc_api/models/pydantic/stage2/radiotherapy_dose.py,sha256=t8tSGVTwb8USRhfO80XVTo-UHbroWBt0bHH-DsvBszE,3304
81
+ cidc_api/models/pydantic/stage2/response.py,sha256=WIl3TbVjHxp9fHPtFccsnfUVkmNdM7aw94ewI2CPm3Q,3118
82
+ cidc_api/models/pydantic/stage2/response_by_system.py,sha256=QP3rYjmaYRLJPSQIkQQ6k3Z3bygH1yLtKVOOFQaIHm0,4705
83
+ cidc_api/models/pydantic/stage2/shipment.py,sha256=leRVcQyEkgX2G5jqn0QmSbmIYqiM8W7OE362xLGwEOM,1571
84
+ cidc_api/models/pydantic/stage2/shipment_specimen.py,sha256=LJglK70mbENQ8lwWe8EJTNYoJSGNXkFUHf7yAMY1zso,464
85
+ cidc_api/models/pydantic/stage2/specimen.py,sha256=PDBzNNPdPVIPFPPVZO_e0McY00K0FQMGOlASjQoUJSc,8350
86
+ cidc_api/models/pydantic/stage2/stem_cell_transplant.py,sha256=RnMKMbydxSX4NRyJfHwH8wdmB8PE6Kno1LIj8i6xgoM,1205
87
+ cidc_api/models/pydantic/stage2/surgery.py,sha256=OOMDGIt0XA4HHXiQjGTVb0zIsQR9uKH1M9GxUOPH5iA,2125
88
+ cidc_api/models/pydantic/stage2/therapy_agent_dose.py,sha256=LgmDXBpDVIR3BxZDHZs4ruX5tSotfan-pU2CUPzddf0,2997
89
+ cidc_api/models/pydantic/stage2/treatment.py,sha256=q8WORTyHSbU7yZvZLvag1dhDc-OAYnY8LPGUbpTzIcw,2015
90
+ cidc_api/models/pydantic/stage2/trial.py,sha256=dYXq-psXUiWVJC2seOndtpMYA1TdIQVbVG8lC9t-oAM,3653
91
+ cidc_api/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
+ cidc_api/shared/auth.py,sha256=PHqmVGkqDjbmUofytVFwD_9ssgUomESl3fFtFHPwZYQ,9062
93
+ cidc_api/shared/email_layout.html,sha256=pBoTNw3ACHH-ncZFaNvcy5bXMqPwizR78usb0uCYtIc,7670
94
+ cidc_api/shared/emails.py,sha256=8kNFEaSnKpY-GX_iE59QUhSp3c4_uzy3SpHYt2QjuqI,6121
95
+ cidc_api/shared/file_handling.py,sha256=UP3KZ61Km5RNmNfk126_upKv-jGkDzpc5Pvk1s7cU2Q,5585
96
+ cidc_api/shared/gcloud_client.py,sha256=ovXGS2ynaBgB_23prj23H10GNN4fectiVF7Hj4LJXQk,37302
97
+ cidc_api/shared/jose.py,sha256=-qzGzEDAlokEp9E7WtBtQkXyyfPWTYXlwYpCqVJWmqM,1830
98
+ cidc_api/shared/rest_utils.py,sha256=RwR30WOUAYCxL7V-i2totEyeriG30GbBDvBcpLXhM9w,6594
99
+ cidc_api/shared/utils.py,sha256=FdZJiynmh6BIzWyCTcUAcUMKCAtzEyp_HLdXEticNcI,237
100
+ nci_cidc_api_modules-1.2.24.dist-info/licenses/LICENSE,sha256=pNYWVTHaYonnmJyplmeAp7tQAjosmDpAWjb34jjv7Xs,1102
101
+ nci_cidc_api_modules-1.2.24.dist-info/METADATA,sha256=v89Xiqb76jrUGqqS1lcKrJ_NjURjC7m9pgSg1wMffAk,39691
102
+ nci_cidc_api_modules-1.2.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
103
+ nci_cidc_api_modules-1.2.24.dist-info/top_level.txt,sha256=rNiRzL0lJGi5Q9tY9uSoMdTbJ-7u5c_D2E86KA94yRA,9
104
+ nci_cidc_api_modules-1.2.24.dist-info/RECORD,,
@@ -1,29 +0,0 @@
1
- cidc_api/config/__init__.py,sha256=5mX8GAPxUKV84iS-aGOoE-4m68LsOCGCDptXNdlgvj0,148
2
- cidc_api/config/db.py,sha256=CRgpyw7uVP9v7CTAa7_1dcXURqrfjRcLNjGgZC7iPQE,1627
3
- cidc_api/config/logging.py,sha256=abhVYtn8lfhIt0tyV2WHFgSmp_s2eeJh7kodB6LH4J0,1149
4
- cidc_api/config/secrets.py,sha256=jRFj7W43pWuPf9DZQLCKF7WPXf5cUv-BAaS3ASqhV_Q,1481
5
- cidc_api/config/settings.py,sha256=ttOGvk_6zVMn4dtxIZ2-0w3wF2fpAUVfGpVZbKJ2b6s,4653
6
- cidc_api/models/__init__.py,sha256=cTyK0Z1ttLo9itwZVRFr-d6aX-zX633YhqipqPgoGfE,115
7
- cidc_api/models/data.py,sha256=evv9JJcW3U_g-74MgKdxtB_gGJBTRQjtnsVKwa3DzFE,638
8
- cidc_api/models/migrations.py,sha256=UlS5How3J4ryaRuZT6F5VQtAKikkl0LTv9MgMO_ltiQ,11161
9
- cidc_api/models/models.py,sha256=2ENATE2dbl93uaKSqveqAVuhv1SvxOkcw4pWDTolng0,148484
10
- cidc_api/models/schemas.py,sha256=6IE2dJoEMcMbi0Vr1V3cYKnPKU0hv9vRKBixOZHe88s,2766
11
- cidc_api/models/types.py,sha256=9dInLZ6gN39zhEe3xhBXyz2xVMr11CeE1-GCOmT_OjY,29928
12
- cidc_api/models/db/base_orm.py,sha256=EV78qFBcOR7spK_PhjbkpsGcmcP33AQItX61SidDa_8,813
13
- cidc_api/models/files/__init__.py,sha256=8BMTnUSHzUbz0lBeEQY6NvApxDD3GMWMduoVMos2g4Y,213
14
- cidc_api/models/files/details.py,sha256=sZkGM7iEV4-J6IDQCdiMV6KBDLbPxCOqUMaU3aY9rX8,65153
15
- cidc_api/models/files/facets.py,sha256=BGx6FeQkK-ujCs-0Y8dUlba8uOmXgAqdY5u1EQqOnFM,33612
16
- cidc_api/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- cidc_api/shared/auth.py,sha256=PHqmVGkqDjbmUofytVFwD_9ssgUomESl3fFtFHPwZYQ,9062
18
- cidc_api/shared/email_layout.html,sha256=pBoTNw3ACHH-ncZFaNvcy5bXMqPwizR78usb0uCYtIc,7670
19
- cidc_api/shared/emails.py,sha256=8kNFEaSnKpY-GX_iE59QUhSp3c4_uzy3SpHYt2QjuqI,6121
20
- cidc_api/shared/file_handling.py,sha256=UP3KZ61Km5RNmNfk126_upKv-jGkDzpc5Pvk1s7cU2Q,5585
21
- cidc_api/shared/gcloud_client.py,sha256=ovXGS2ynaBgB_23prj23H10GNN4fectiVF7Hj4LJXQk,37302
22
- cidc_api/shared/jose.py,sha256=-qzGzEDAlokEp9E7WtBtQkXyyfPWTYXlwYpCqVJWmqM,1830
23
- cidc_api/shared/rest_utils.py,sha256=RwR30WOUAYCxL7V-i2totEyeriG30GbBDvBcpLXhM9w,6594
24
- cidc_api/shared/utils.py,sha256=FdZJiynmh6BIzWyCTcUAcUMKCAtzEyp_HLdXEticNcI,237
25
- nci_cidc_api_modules-1.2.22.dist-info/licenses/LICENSE,sha256=pNYWVTHaYonnmJyplmeAp7tQAjosmDpAWjb34jjv7Xs,1102
26
- nci_cidc_api_modules-1.2.22.dist-info/METADATA,sha256=aNJ5f0YzoRKWDprwNZfKJV12nMUL_uUGyoBtOxv2t3U,39691
27
- nci_cidc_api_modules-1.2.22.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
- nci_cidc_api_modules-1.2.22.dist-info/top_level.txt,sha256=rNiRzL0lJGi5Q9tY9uSoMdTbJ-7u5c_D2E86KA94yRA,9
29
- nci_cidc_api_modules-1.2.22.dist-info/RECORD,,