nci-cidc-api-modules 1.2.39__py3-none-any.whl → 1.2.41__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.
- cidc_api/__init__.py +1 -1
- cidc_api/config/db.py +21 -1
- cidc_api/models/__init__.py +0 -2
- cidc_api/models/data.py +14 -5
- cidc_api/models/db/stage1/__init__.py +56 -0
- cidc_api/models/db/stage1/additional_treatment_orm.py +23 -0
- cidc_api/models/db/stage1/adverse_event_orm.py +47 -0
- cidc_api/models/db/stage1/base_orm.py +7 -0
- cidc_api/models/db/stage1/baseline_clinical_assessment_orm.py +23 -0
- cidc_api/models/db/stage1/comorbidity_orm.py +24 -0
- cidc_api/models/db/stage1/consent_group_orm.py +33 -0
- cidc_api/models/db/stage1/demographic_orm.py +48 -0
- cidc_api/models/db/stage1/disease_orm.py +53 -0
- cidc_api/models/db/stage1/exposure_orm.py +23 -0
- cidc_api/models/db/stage1/gvhd_diagnosis_acute_orm.py +35 -0
- cidc_api/models/db/stage1/gvhd_diagnosis_chronic_orm.py +37 -0
- cidc_api/models/db/stage1/gvhd_organ_acute_orm.py +22 -0
- cidc_api/models/db/stage1/gvhd_organ_chronic_orm.py +22 -0
- cidc_api/models/db/stage1/medical_history_orm.py +31 -0
- cidc_api/models/db/stage1/other_malignancy_orm.py +30 -0
- cidc_api/models/db/stage1/participant_orm.py +78 -0
- cidc_api/models/db/stage1/prior_treatment_orm.py +30 -0
- cidc_api/models/db/stage1/radiotherapy_dose_orm.py +40 -0
- cidc_api/models/db/stage1/response_by_system_orm.py +31 -0
- cidc_api/models/db/stage1/response_orm.py +29 -0
- cidc_api/models/db/stage1/specimen_orm.py +47 -0
- cidc_api/models/db/stage1/stem_cell_transplant_orm.py +26 -0
- cidc_api/models/db/stage1/surgery_orm.py +28 -0
- cidc_api/models/db/stage1/therapy_agent_dose_orm.py +32 -0
- cidc_api/models/db/stage1/treatment_orm.py +39 -0
- cidc_api/models/db/stage1/trial_orm.py +36 -0
- cidc_api/models/db/stage2/additional_treatment_orm.py +6 -6
- cidc_api/models/db/stage2/administrative_person_orm.py +4 -3
- cidc_api/models/db/stage2/administrative_role_assignment_orm.py +4 -3
- cidc_api/models/db/stage2/adverse_event_orm.py +11 -12
- cidc_api/models/db/stage2/arm_orm.py +3 -2
- cidc_api/models/db/stage2/base_orm.py +7 -0
- cidc_api/models/db/stage2/baseline_clinical_assessment_orm.py +5 -6
- cidc_api/models/db/stage2/cohort_orm.py +3 -2
- cidc_api/models/db/stage2/comorbidity_orm.py +6 -7
- cidc_api/models/db/stage2/consent_group_orm.py +4 -3
- cidc_api/models/db/stage2/contact_orm.py +16 -19
- cidc_api/models/db/stage2/demographic_orm.py +3 -2
- cidc_api/models/db/stage2/disease_orm.py +4 -3
- cidc_api/models/db/stage2/exposure_orm.py +3 -2
- cidc_api/models/db/stage2/file_orm.py +6 -8
- cidc_api/models/db/stage2/gvhd_diagnosis_acute_orm.py +4 -3
- cidc_api/models/db/stage2/gvhd_diagnosis_chronic_orm.py +4 -5
- cidc_api/models/db/stage2/gvhd_organ_acute_orm.py +3 -2
- cidc_api/models/db/stage2/gvhd_organ_chronic_orm.py +3 -2
- cidc_api/models/db/stage2/institution_orm.py +7 -6
- cidc_api/models/db/stage2/medical_history_orm.py +9 -8
- cidc_api/models/db/stage2/other_clinical_endpoint_orm.py +8 -11
- cidc_api/models/db/stage2/other_malignancy_orm.py +8 -9
- cidc_api/models/db/stage2/participant_orm.py +23 -23
- cidc_api/models/db/stage2/prior_treatment_orm.py +12 -12
- cidc_api/models/db/stage2/publication_orm.py +9 -10
- cidc_api/models/db/stage2/radiotherapy_dose_orm.py +8 -8
- cidc_api/models/db/stage2/response_by_system_orm.py +3 -2
- cidc_api/models/db/stage2/response_orm.py +3 -2
- cidc_api/models/db/stage2/shipment_orm.py +17 -16
- cidc_api/models/db/stage2/shipment_specimen_orm.py +4 -3
- cidc_api/models/db/stage2/specimen_orm.py +7 -5
- cidc_api/models/db/stage2/stem_cell_transplant_orm.py +5 -5
- cidc_api/models/db/stage2/surgery_orm.py +6 -6
- cidc_api/models/db/stage2/therapy_agent_dose_orm.py +7 -7
- cidc_api/models/db/stage2/treatment_orm.py +15 -14
- cidc_api/models/db/stage2/trial_orm.py +15 -16
- cidc_api/models/models.py +1 -0
- cidc_api/models/pydantic/{stage2/base.py → base.py} +1 -1
- cidc_api/models/pydantic/stage1/__init__.py +56 -0
- cidc_api/models/pydantic/stage1/additional_treatment.py +23 -0
- cidc_api/models/pydantic/stage1/adverse_event.py +100 -0
- cidc_api/models/pydantic/stage1/baseline_clinical_assessment.py +23 -0
- cidc_api/models/pydantic/stage1/comorbidity.py +36 -0
- cidc_api/models/pydantic/stage1/consent_group.py +30 -0
- cidc_api/models/pydantic/stage1/demographic.py +123 -0
- cidc_api/models/pydantic/stage1/disease.py +158 -0
- cidc_api/models/pydantic/stage1/exposure.py +32 -0
- cidc_api/models/pydantic/stage1/gvhd_diagnosis_acute.py +33 -0
- cidc_api/models/pydantic/stage1/gvhd_diagnosis_chronic.py +32 -0
- cidc_api/models/pydantic/stage1/gvhd_organ_acute.py +22 -0
- cidc_api/models/pydantic/stage1/gvhd_organ_chronic.py +23 -0
- cidc_api/models/pydantic/stage1/medical_history.py +36 -0
- cidc_api/models/pydantic/stage1/other_malignancy.py +49 -0
- cidc_api/models/pydantic/stage1/participant.py +51 -0
- cidc_api/models/pydantic/stage1/prior_treatment.py +45 -0
- cidc_api/models/pydantic/stage1/radiotherapy_dose.py +79 -0
- cidc_api/models/pydantic/stage1/response.py +65 -0
- cidc_api/models/pydantic/stage1/response_by_system.py +112 -0
- cidc_api/models/pydantic/stage1/specimen.py +31 -0
- cidc_api/models/pydantic/stage1/stem_cell_transplant.py +35 -0
- cidc_api/models/pydantic/stage1/surgery.py +49 -0
- cidc_api/models/pydantic/stage1/therapy_agent_dose.py +67 -0
- cidc_api/models/pydantic/stage1/treatment.py +50 -0
- cidc_api/models/pydantic/stage1/trial.py +45 -0
- cidc_api/models/pydantic/stage2/additional_treatment.py +2 -4
- cidc_api/models/pydantic/stage2/administrative_person.py +1 -1
- cidc_api/models/pydantic/stage2/administrative_role_assignment.py +2 -2
- cidc_api/models/pydantic/stage2/adverse_event.py +1 -1
- cidc_api/models/pydantic/stage2/arm.py +2 -2
- cidc_api/models/pydantic/stage2/baseline_clinical_assessment.py +1 -1
- cidc_api/models/pydantic/stage2/cohort.py +1 -1
- cidc_api/models/pydantic/stage2/comorbidity.py +1 -1
- cidc_api/models/pydantic/stage2/consent_group.py +2 -2
- cidc_api/models/pydantic/stage2/contact.py +1 -1
- cidc_api/models/pydantic/stage2/demographic.py +1 -1
- cidc_api/models/pydantic/stage2/disease.py +1 -1
- cidc_api/models/pydantic/stage2/exposure.py +1 -1
- cidc_api/models/pydantic/stage2/file.py +2 -2
- cidc_api/models/pydantic/stage2/gvhd_diagnosis_acute.py +1 -1
- cidc_api/models/pydantic/stage2/gvhd_diagnosis_chronic.py +1 -1
- cidc_api/models/pydantic/stage2/gvhd_organ_acute.py +1 -1
- cidc_api/models/pydantic/stage2/gvhd_organ_chronic.py +1 -1
- cidc_api/models/pydantic/stage2/institution.py +1 -1
- cidc_api/models/pydantic/stage2/medical_history.py +1 -1
- cidc_api/models/pydantic/stage2/other_clinical_endpoint.py +1 -1
- cidc_api/models/pydantic/stage2/other_malignancy.py +1 -1
- cidc_api/models/pydantic/stage2/participant.py +6 -3
- cidc_api/models/pydantic/stage2/prior_treatment.py +6 -15
- cidc_api/models/pydantic/stage2/publication.py +2 -2
- cidc_api/models/pydantic/stage2/radiotherapy_dose.py +1 -1
- cidc_api/models/pydantic/stage2/response.py +2 -2
- cidc_api/models/pydantic/stage2/response_by_system.py +1 -1
- cidc_api/models/pydantic/stage2/shipment.py +2 -2
- cidc_api/models/pydantic/stage2/shipment_specimen.py +1 -1
- cidc_api/models/pydantic/stage2/specimen.py +6 -3
- cidc_api/models/pydantic/stage2/stem_cell_transplant.py +2 -2
- cidc_api/models/pydantic/stage2/surgery.py +1 -1
- cidc_api/models/pydantic/stage2/therapy_agent_dose.py +1 -1
- cidc_api/models/pydantic/stage2/treatment.py +1 -1
- cidc_api/models/pydantic/stage2/trial.py +8 -10
- cidc_api/models/types.py +29 -16
- cidc_api/shared/gcloud_client.py +2 -2
- cidc_api/shared/utils.py +1 -0
- {nci_cidc_api_modules-1.2.39.dist-info → nci_cidc_api_modules-1.2.41.dist-info}/METADATA +1 -1
- nci_cidc_api_modules-1.2.41.dist-info/RECORD +165 -0
- cidc_api/models/db/base_orm.py +0 -25
- nci_cidc_api_modules-1.2.39.dist-info/RECORD +0 -112
- {nci_cidc_api_modules-1.2.39.dist-info → nci_cidc_api_modules-1.2.41.dist-info}/WHEEL +0 -0
- {nci_cidc_api_modules-1.2.39.dist-info → nci_cidc_api_modules-1.2.41.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_api_modules-1.2.39.dist-info → nci_cidc_api_modules-1.2.41.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from pydantic import NonPositiveInt, model_validator, BeforeValidator
|
|
2
2
|
from typing import List, Self, Annotated, get_args
|
|
3
3
|
|
|
4
|
-
from .base import Base
|
|
4
|
+
from cidc_api.models.pydantic.base import Base
|
|
5
5
|
from cidc_api.models.types import (
|
|
6
6
|
TumorGrade,
|
|
7
7
|
CancerStageSystem,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
|
-
from .base import Base
|
|
2
|
+
from cidc_api.models.pydantic.base import Base
|
|
3
3
|
from cidc_api.models.types import ChecksumType, FileFormat
|
|
4
4
|
|
|
5
5
|
|
|
@@ -8,7 +8,7 @@ class File(Base):
|
|
|
8
8
|
file_id: int | None = None
|
|
9
9
|
|
|
10
10
|
# The unique identifier for the associated trial
|
|
11
|
-
trial_id:
|
|
11
|
+
trial_id: str | None = None
|
|
12
12
|
|
|
13
13
|
# The version number of the trial dataset
|
|
14
14
|
version: str | None = None
|
|
@@ -2,7 +2,7 @@ from typing import Self
|
|
|
2
2
|
|
|
3
3
|
from pydantic import NonPositiveInt, model_validator
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
6
|
from cidc_api.models.types import UberonAnatomicalTerm, ICDO3MorphologicalCode, ICDO3MorphologicalTerm, MalignancyStatus
|
|
7
7
|
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@ from typing import Self
|
|
|
2
2
|
|
|
3
3
|
from pydantic import model_validator
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
6
|
from cidc_api.models.types import YNU
|
|
7
7
|
from cidc_api.models.types import OffStudyReason
|
|
8
8
|
|
|
@@ -16,13 +16,16 @@ class Participant(Base):
|
|
|
16
16
|
participant_id: str | None = None
|
|
17
17
|
|
|
18
18
|
# The participant identifier assigned by the clinical trial team overseeing the study
|
|
19
|
-
native_participant_id: str
|
|
19
|
+
native_participant_id: str
|
|
20
20
|
|
|
21
21
|
# The globally unique participant identifier assigned by the CIMAC network. e.g. C8P29A7
|
|
22
22
|
cimac_participant_id: str | None = None
|
|
23
23
|
|
|
24
24
|
# The unique identifier for the associated trial that the participant is participating in
|
|
25
|
-
trial_id:
|
|
25
|
+
trial_id: str | None = None
|
|
26
|
+
|
|
27
|
+
# The version number of the trial dataset. e.g. "1.0"
|
|
28
|
+
version: str | None = None
|
|
26
29
|
|
|
27
30
|
# Indicates if the individual is no longer actively participating in the clinical trial.
|
|
28
31
|
# CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=14834973%20and%20ver_nr=1
|
|
@@ -2,8 +2,8 @@ from typing import Self, Annotated, List
|
|
|
2
2
|
|
|
3
3
|
from pydantic import NonPositiveInt, NegativeInt, model_validator, BeforeValidator
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
6
|
-
from cidc_api.models.types import
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
|
+
from cidc_api.models.types import ConditioningRegimenType, StemCellDonorType
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class PriorTreatment(Base):
|
|
@@ -24,12 +24,9 @@ class PriorTreatment(Base):
|
|
|
24
24
|
# the treatment modality.
|
|
25
25
|
prior_treatment_days_to_end: NonPositiveInt | None = None
|
|
26
26
|
|
|
27
|
-
# Specifies the category or kind of prior treatment modality a participant received.
|
|
28
|
-
prior_treatment_type: Annotated[List[PriorTreatmentType], BeforeValidator(Base.split_list)]
|
|
29
|
-
|
|
30
27
|
# Description of the prior treatment such as its full generic name if it is a type of therapy agent,
|
|
31
28
|
# radiotherapy procedure name and location, or surgical procedure name and location.
|
|
32
|
-
prior_treatment_description: str
|
|
29
|
+
prior_treatment_description: str
|
|
33
30
|
|
|
34
31
|
# Best response from any response assessment system to the prior treatment if available or applicable.
|
|
35
32
|
prior_treatment_best_response: str | None = None
|
|
@@ -41,12 +38,6 @@ class PriorTreatment(Base):
|
|
|
41
38
|
# If prior treatment is "Stem cell transplant", indicates what stem cell donor type used.
|
|
42
39
|
prior_treatment_stem_cell_donor_type: StemCellDonorType | None = None
|
|
43
40
|
|
|
44
|
-
# If prior treatment is "Stem cell transplant", indicates the number of days from
|
|
45
|
-
#
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
@model_validator(mode="after")
|
|
49
|
-
def validate_description_cr(self) -> Self:
|
|
50
|
-
if "Other therapy" in self.prior_treatment_type and not self.prior_treatment_description:
|
|
51
|
-
raise ValueError('If type is "Other therapy", please provide description.')
|
|
52
|
-
return self
|
|
41
|
+
# If prior treatment is "Stem cell transplant", indicates the number of days from enrollment
|
|
42
|
+
# to the prior transplant. This must be a negative number.
|
|
43
|
+
prior_treatment_days_from_transplant_to_treatment_initiation: NegativeInt | None = None
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from .base import Base
|
|
1
|
+
from cidc_api.models.pydantic.base import Base
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
class Publication(Base):
|
|
@@ -6,7 +6,7 @@ class Publication(Base):
|
|
|
6
6
|
publication_id: int | None = None
|
|
7
7
|
|
|
8
8
|
# The unique internal identifier for the associated Trial record
|
|
9
|
-
trial_id:
|
|
9
|
+
trial_id: str | None = None
|
|
10
10
|
|
|
11
11
|
# The version number of the trial dataset
|
|
12
12
|
version: str | None = None
|
|
@@ -2,7 +2,7 @@ from typing import Self
|
|
|
2
2
|
|
|
3
3
|
from pydantic import NonNegativeInt, model_validator
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
6
|
from cidc_api.models.types import SurvivalStatus, YNUNA, CauseOfDeath
|
|
7
7
|
|
|
8
8
|
|
|
@@ -44,7 +44,7 @@ class Response(Base):
|
|
|
44
44
|
evaluable_for_efficacy: bool
|
|
45
45
|
|
|
46
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
|
|
47
|
+
days_to_last_vital_status: NonNegativeInt | None = None # TODO: Needs CR check
|
|
48
48
|
|
|
49
49
|
@model_validator(mode="after")
|
|
50
50
|
def validate_cause_of_death_cr(self) -> Self:
|
|
@@ -2,7 +2,7 @@ from typing import Self
|
|
|
2
2
|
|
|
3
3
|
from pydantic import PositiveInt, model_validator, NonNegativeInt
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
6
|
from cidc_api.models.types import ResponseSystem, ResponseSystemVersion, BestOverallResponse, YNUNA
|
|
7
7
|
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
|
|
3
|
-
from .base import Base
|
|
3
|
+
from cidc_api.models.pydantic.base import Base
|
|
4
4
|
from cidc_api.models.types import AssayPriority, AssayType, Courier, ShipmentCondition, ShipmentQuality
|
|
5
5
|
|
|
6
6
|
|
|
@@ -12,7 +12,7 @@ class Shipment(Base):
|
|
|
12
12
|
institution_id: int | None = None
|
|
13
13
|
|
|
14
14
|
# The unique internal identifier for the associated trial.
|
|
15
|
-
trial_id:
|
|
15
|
+
trial_id: str | None = None
|
|
16
16
|
|
|
17
17
|
# The version number of the trial dataset
|
|
18
18
|
version: str | None = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
|
|
3
|
-
from .base import Base
|
|
3
|
+
from cidc_api.models.pydantic.base import Base
|
|
4
4
|
from cidc_api.models.types import (
|
|
5
5
|
UberonAnatomicalTerm,
|
|
6
6
|
ICDO3MorphologicalCode,
|
|
@@ -66,7 +66,7 @@ class Specimen(Base):
|
|
|
66
66
|
# Categorical description of timepoint at which the sample was taken.
|
|
67
67
|
# CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=5899851%20and%20ver_nr=1
|
|
68
68
|
# Note: CIDC doesn't conform to this CDE's PVs
|
|
69
|
-
collection_event_name: str
|
|
69
|
+
collection_event_name: str
|
|
70
70
|
|
|
71
71
|
# The type of the specimen
|
|
72
72
|
specimen_type: SpecimenType | None = None
|
|
@@ -208,4 +208,7 @@ class Specimen(Base):
|
|
|
208
208
|
date_ingested: datetime | None = None
|
|
209
209
|
|
|
210
210
|
# Days from enrollment date to date specimen was collected.
|
|
211
|
-
days_to_specimen_collection: int
|
|
211
|
+
days_to_specimen_collection: int
|
|
212
|
+
|
|
213
|
+
# The location within the body from which a specimen was originally obtained as captured in the Uberon anatomical term.
|
|
214
|
+
organ_site_of_collection: UberonAnatomicalTerm
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from pydantic import NonNegativeInt
|
|
2
|
-
from .base import Base
|
|
2
|
+
from cidc_api.models.pydantic.base import Base
|
|
3
3
|
from cidc_api.models.types import (
|
|
4
4
|
StemCellDonorType,
|
|
5
5
|
AllogeneicDonorType,
|
|
@@ -26,7 +26,7 @@ class StemCellTransplant(Base):
|
|
|
26
26
|
allogeneic_donor_type: AllogeneicDonorType | None = None
|
|
27
27
|
|
|
28
28
|
# Source of the stem cells used for transplant.
|
|
29
|
-
|
|
29
|
+
stem_cell_source: StemCellSource
|
|
30
30
|
|
|
31
31
|
# Days from the enrollment date to the date of the stem cell transplant.
|
|
32
32
|
days_to_transplant: NonNegativeInt
|
|
@@ -2,8 +2,8 @@ from datetime import datetime
|
|
|
2
2
|
from pydantic import BeforeValidator
|
|
3
3
|
from typing import List, Annotated
|
|
4
4
|
|
|
5
|
-
from .base import Base
|
|
6
|
-
from cidc_api.models.types import TrialOrganization, TrialFundingAgency, AssayType, AgeGroup
|
|
5
|
+
from cidc_api.models.pydantic.base import Base
|
|
6
|
+
from cidc_api.models.types import TrialOrganization, TrialFundingAgency, AssayType, AgeGroup, PrimaryPurposeType
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class Trial(Base):
|
|
@@ -12,7 +12,7 @@ class Trial(Base):
|
|
|
12
12
|
|
|
13
13
|
# The unique identifier for the clinical trial. e.g. "GU16-287","BACCI"
|
|
14
14
|
# CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=5054234%20and%20ver_nr=1
|
|
15
|
-
trial_id: str | None = None
|
|
15
|
+
trial_id: str | None = None
|
|
16
16
|
|
|
17
17
|
# The version number of the trial dataset. e.g. "1.0"
|
|
18
18
|
version: str | None = None
|
|
@@ -69,6 +69,10 @@ class Trial(Base):
|
|
|
69
69
|
# CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=16333703%20and%20ver_nr=1
|
|
70
70
|
dates_of_conduct_end: datetime | None = None
|
|
71
71
|
|
|
72
|
+
# A classification of the study based upon the primary intent of the study's activities.
|
|
73
|
+
# CDE: https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11160683%20and%20ver_nr=1
|
|
74
|
+
primary_purpose_type: PrimaryPurposeType
|
|
75
|
+
|
|
72
76
|
# The image of the trial data schema
|
|
73
77
|
schema_file_id: int | None = None
|
|
74
78
|
|
|
@@ -81,11 +85,5 @@ class Trial(Base):
|
|
|
81
85
|
# The list of assays that CIDC expects to receive for this trial.
|
|
82
86
|
expected_assays: List[AssayType] = []
|
|
83
87
|
|
|
84
|
-
# Is the cancer studying a liquid tumor type?
|
|
85
|
-
is_liquid_tumor_trial: bool = False
|
|
86
|
-
|
|
87
88
|
# The dbgap study accession number associated with the trial.
|
|
88
|
-
dbgap_study_accession: str
|
|
89
|
-
|
|
90
|
-
# The internal version identifier for this specific trial dataset.
|
|
91
|
-
version: str
|
|
89
|
+
dbgap_study_accession: str
|
cidc_api/models/types.py
CHANGED
|
@@ -26,6 +26,7 @@ AgeGroup = Literal[
|
|
|
26
26
|
"Pediatric",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
|
+
|
|
29
30
|
TrialOrganization = Literal[
|
|
30
31
|
"ECOG-ACRIN",
|
|
31
32
|
"SWOG",
|
|
@@ -59,6 +60,34 @@ TrialFundingAgency = Literal[
|
|
|
59
60
|
]
|
|
60
61
|
|
|
61
62
|
|
|
63
|
+
PrimaryPurposeType = Literal[
|
|
64
|
+
"Adverse Effect Mitigation Study",
|
|
65
|
+
"Ancillary Study",
|
|
66
|
+
"Basic Science Research ",
|
|
67
|
+
"Correlative Study",
|
|
68
|
+
"Cure Study",
|
|
69
|
+
"Device Feasibility Study",
|
|
70
|
+
"Diagnosis Study",
|
|
71
|
+
"Disease Modifying Treatment Study",
|
|
72
|
+
"Early Detection Study",
|
|
73
|
+
"Education Training Clinical Study",
|
|
74
|
+
"Epidemiology Research ",
|
|
75
|
+
"Genomics Research",
|
|
76
|
+
"Health Services Research",
|
|
77
|
+
"Imaging Research",
|
|
78
|
+
"Interventional Study",
|
|
79
|
+
"Observational Study",
|
|
80
|
+
"Outcomes Research",
|
|
81
|
+
"Prevention Study",
|
|
82
|
+
"Proteomic Research",
|
|
83
|
+
"Rehabilitation Clinical Study ",
|
|
84
|
+
"Screening Study",
|
|
85
|
+
"Supportive Care Study",
|
|
86
|
+
"Transcriptomics Research",
|
|
87
|
+
"Treatment Study",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
|
|
62
91
|
AssayType = Literal[
|
|
63
92
|
"Olink",
|
|
64
93
|
"WES",
|
|
@@ -285,7 +314,6 @@ CancerStageAJCC = Literal[
|
|
|
285
314
|
|
|
286
315
|
|
|
287
316
|
CancerStageFIGO = Literal[
|
|
288
|
-
"value",
|
|
289
317
|
"Stage I",
|
|
290
318
|
"Stage IA",
|
|
291
319
|
"Stage IA1",
|
|
@@ -1016,21 +1044,6 @@ GVHDDiagnosisChronicGlobalSeverity = Literal["Mild", "Moderate", "Severe"]
|
|
|
1016
1044
|
GVHDOrganChronicScore = Literal["0", "1", "2", "3"]
|
|
1017
1045
|
|
|
1018
1046
|
|
|
1019
|
-
PriorTreatmentType = Literal[
|
|
1020
|
-
"Surgery",
|
|
1021
|
-
"Radiotherapy",
|
|
1022
|
-
"Immunotherapy",
|
|
1023
|
-
"Chemotherapy",
|
|
1024
|
-
"Targeted therapy",
|
|
1025
|
-
"Other therapy",
|
|
1026
|
-
"Radiopharmaceutical",
|
|
1027
|
-
"Stem cell transplant",
|
|
1028
|
-
"Immunosuppressive therapy/GVHD prophylaxis for transplant",
|
|
1029
|
-
"Conditioning therapy",
|
|
1030
|
-
"Post-transplant salvage therapy",
|
|
1031
|
-
]
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
1047
|
ConditioningRegimenType = Literal["Myeloablative", "Reduced-intensity", "Non-myeloablative", "Other"]
|
|
1035
1048
|
|
|
1036
1049
|
StemCellDonorType = Literal["Autologous", "Allogeneic"]
|
cidc_api/shared/gcloud_client.py
CHANGED
|
@@ -449,9 +449,9 @@ def gcs_xlsx_or_csv_file_to_pandas_dataframe(bucket_name: str, blob_name: str):
|
|
|
449
449
|
|
|
450
450
|
# TODO: specify sheet in xlsx file and/or accept tsv and xls files
|
|
451
451
|
if blob_name[-3:] == "csv":
|
|
452
|
-
return strip_whitespaces(pd.read_csv(temp_file))
|
|
452
|
+
return strip_whitespaces(pd.read_csv(temp_file, dtype=str, keep_default_na=False))
|
|
453
453
|
elif blob_name[-4:] == "xlsx":
|
|
454
|
-
return strip_whitespaces(pd.read_excel(temp_file))
|
|
454
|
+
return strip_whitespaces(pd.read_excel(temp_file, dtype=str, keep_default_na=False))
|
|
455
455
|
else:
|
|
456
456
|
raise Exception("Can only read csv or xlsx files")
|
|
457
457
|
|
cidc_api/shared/utils.py
CHANGED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
cidc_api/__init__.py,sha256=4Ai8ZOYwlbREMRamBAcMFBQlvDiu4t_ciaxtb7__HP0,23
|
|
2
|
+
cidc_api/telemetry.py,sha256=LuZWkG8CKCn23O41RTNxEOQwMmfpp-fQ6zSInZhVJg8,3333
|
|
3
|
+
cidc_api/config/__init__.py,sha256=5mX8GAPxUKV84iS-aGOoE-4m68LsOCGCDptXNdlgvj0,148
|
|
4
|
+
cidc_api/config/db.py,sha256=mEz8ugjvRNGylCqDYHaaMqaZfDh7sbd76BowmfBvq5c,2428
|
|
5
|
+
cidc_api/config/logging.py,sha256=abhVYtn8lfhIt0tyV2WHFgSmp_s2eeJh7kodB6LH4J0,1149
|
|
6
|
+
cidc_api/config/secrets.py,sha256=jRFj7W43pWuPf9DZQLCKF7WPXf5cUv-BAaS3ASqhV_Q,1481
|
|
7
|
+
cidc_api/config/settings.py,sha256=ttOGvk_6zVMn4dtxIZ2-0w3wF2fpAUVfGpVZbKJ2b6s,4653
|
|
8
|
+
cidc_api/models/__init__.py,sha256=bl445G8Zic9YbhZ8ZBni07wtBMhLJRMBA-JqjLxx2bw,66
|
|
9
|
+
cidc_api/models/data.py,sha256=mySTpsG4qEBSh5c7dpQZJ2xTxHiYdFYuXO_a_B2gPXE,1313
|
|
10
|
+
cidc_api/models/migrations.py,sha256=UlS5How3J4ryaRuZT6F5VQtAKikkl0LTv9MgMO_ltiQ,11161
|
|
11
|
+
cidc_api/models/models.py,sha256=h8AvXuxXYuekCwPhiEpYbVGG7jHQog3wnWiEXLIaXdY,153111
|
|
12
|
+
cidc_api/models/schemas.py,sha256=6IE2dJoEMcMbi0Vr1V3cYKnPKU0hv9vRKBixOZHe88s,2766
|
|
13
|
+
cidc_api/models/types.py,sha256=Zv9eUs7XUysJa_lzimbl7jSOEhvNozAkgPGGbvMIafo,30040
|
|
14
|
+
cidc_api/models/db/stage1/__init__.py,sha256=zsxOSoogzL_xZ8B5OwcwLXvAmm6g2GYx1Zf6LLw8dq8,1917
|
|
15
|
+
cidc_api/models/db/stage1/additional_treatment_orm.py,sha256=aiimE27oj96sE4F9LwZAlkHNLMwH8dNS5GTYA4DnSIU,968
|
|
16
|
+
cidc_api/models/db/stage1/adverse_event_orm.py,sha256=dgFdFQliPMzoYa5yf8TlX0XM1tcyu4zfu9Xq8Hbmzwc,1956
|
|
17
|
+
cidc_api/models/db/stage1/base_orm.py,sha256=izKizTf2W1fCK2CRUeyuErJbOaxNp6d299n4gqKWHDQ,246
|
|
18
|
+
cidc_api/models/db/stage1/baseline_clinical_assessment_orm.py,sha256=TKI-GquW_jXUxh_cIZntd5G2Soq3n_xwRrsmtd1Jw-c,953
|
|
19
|
+
cidc_api/models/db/stage1/comorbidity_orm.py,sha256=v3a29HA_j7ZTJWQSu17HPutSqACf4m5whgJCVNgoGJs,923
|
|
20
|
+
cidc_api/models/db/stage1/consent_group_orm.py,sha256=4dKIFyFdTog1lUvnhPOfOhe61CvPZYRvRiuVpe9bPlg,1141
|
|
21
|
+
cidc_api/models/db/stage1/demographic_orm.py,sha256=t7fcHya_MGNhdq-0wS0s9MiHEG3W4Xan0fd01uvGGHU,1735
|
|
22
|
+
cidc_api/models/db/stage1/disease_orm.py,sha256=ATghsDBfbOFdA5uvaRKp_-td11ze2QBd8IM7AtI6Gkk,2007
|
|
23
|
+
cidc_api/models/db/stage1/exposure_orm.py,sha256=EAFDF9q3EPEiEscqpfZl2PE5oueMarcde3U3d5d5a5M,853
|
|
24
|
+
cidc_api/models/db/stage1/gvhd_diagnosis_acute_orm.py,sha256=_wV4yy8hZk71Lm9t3Zl1u2OFswzEo1W88Pk0qU9q5Y0,1500
|
|
25
|
+
cidc_api/models/db/stage1/gvhd_diagnosis_chronic_orm.py,sha256=MJAznv516eh0l5pXreIC3ykqS0CPI9B1gvSxActbIHc,1582
|
|
26
|
+
cidc_api/models/db/stage1/gvhd_organ_acute_orm.py,sha256=-6XMobavlAllAUqHc1e-WqjF6APcln1xb31ZChIM17w,880
|
|
27
|
+
cidc_api/models/db/stage1/gvhd_organ_chronic_orm.py,sha256=94eT0sbZT8KF7XVaynKZKlYYZuGrF0TxWiF_yDwtgIk,904
|
|
28
|
+
cidc_api/models/db/stage1/medical_history_orm.py,sha256=RYPEnInuMQIUtod6NWWvlHuJe7cgyTNT3R3Ols4yiAE,1324
|
|
29
|
+
cidc_api/models/db/stage1/other_malignancy_orm.py,sha256=2zQ4r5uXO20vWLbHJtDObpct3tYcL6DD0qT3Bixai58,1345
|
|
30
|
+
cidc_api/models/db/stage1/participant_orm.py,sha256=8-tO3avpih2ntUzyZwewBEYD-wJ3EQkcMwx73ME9dnc,3553
|
|
31
|
+
cidc_api/models/db/stage1/prior_treatment_orm.py,sha256=fcX4KiKVtcn3UzAtwhyvUF-nUD_A58CE1tBlCYDh3RU,1367
|
|
32
|
+
cidc_api/models/db/stage1/radiotherapy_dose_orm.py,sha256=UVEhn5S6JG41oUBpPHfHNpQ8Chk7LfbqTDaYpnkPa-I,1542
|
|
33
|
+
cidc_api/models/db/stage1/response_by_system_orm.py,sha256=Uq99hXlA5Y_KKW19BlGeLpdGXIOOVoPlUV-bbJtsXak,1566
|
|
34
|
+
cidc_api/models/db/stage1/response_orm.py,sha256=2JsI3YwpmVlMrPOwt5ukeWU3fag4fE5CYomJEYIqzNA,1205
|
|
35
|
+
cidc_api/models/db/stage1/specimen_orm.py,sha256=LPKfl0Loa9TdkEJFhV4u6w8KoaiH1bjEXrYJv9yp2BI,1396
|
|
36
|
+
cidc_api/models/db/stage1/stem_cell_transplant_orm.py,sha256=tcjZzV7LkGkBj_DMPkFG8qJWmlTQSH1iamM9MTlnFto,1132
|
|
37
|
+
cidc_api/models/db/stage1/surgery_orm.py,sha256=ba23DOF9KRpsabq-SaI0Q3WCAeCWJ8czUoy6Xr2PSpg,1060
|
|
38
|
+
cidc_api/models/db/stage1/therapy_agent_dose_orm.py,sha256=rDierfZ3d1JCEL0yMfyImuIgbbfWS3BI_saVVuYqwNs,1348
|
|
39
|
+
cidc_api/models/db/stage1/treatment_orm.py,sha256=77E01T5UI7aR-T_BKY2pDIFqusuz11oeR8SWi0CWO5c,1667
|
|
40
|
+
cidc_api/models/db/stage1/trial_orm.py,sha256=LiYdJUAx7nS_9Whc_KBm4gTBxKokGeWdVPihXlgYUX4,1308
|
|
41
|
+
cidc_api/models/db/stage2/__init__.py,sha256=R33BM1VDKJya5uuyYnPoGFVfhSViclIOklSoHH-EtBQ,2691
|
|
42
|
+
cidc_api/models/db/stage2/additional_treatment_orm.py,sha256=RpP1ug07ZSI1eB5Z5D9XLtO-APuRSKcvHDPv_eUJqpE,966
|
|
43
|
+
cidc_api/models/db/stage2/administrative_person_orm.py,sha256=jYxwe-BfbjkKhC_iWjWPhnY8dvC1qPVYhCIzki-_r_E,1058
|
|
44
|
+
cidc_api/models/db/stage2/administrative_role_assignment_orm.py,sha256=W5cViaBQa3TyGP5F12B1o9DrDeQHCuXx_NtQx3ICweE,1321
|
|
45
|
+
cidc_api/models/db/stage2/adverse_event_orm.py,sha256=1AH4Uiksyqer8mNNRkYj6lmWfgT_X4-2bGEsGPPR-DI,1956
|
|
46
|
+
cidc_api/models/db/stage2/arm_orm.py,sha256=J7Q7oYWGS4q2w38xqGn0zH3kQo0HsE_FoTjIyeLNBX0,737
|
|
47
|
+
cidc_api/models/db/stage2/base_orm.py,sha256=nk9q0wlHxbuC7vzMtPCsnqeIRQufh3MCniMxu-h7__w,246
|
|
48
|
+
cidc_api/models/db/stage2/baseline_clinical_assessment_orm.py,sha256=FmSXM7yCl0XVHdAdYPFmSwZoZxeOHD3I8f78h9uM0dk,953
|
|
49
|
+
cidc_api/models/db/stage2/cohort_orm.py,sha256=E0vWv_0rjwI_cAlDzVGp-loSSPlpuHHO3qbgXwc3WCg,740
|
|
50
|
+
cidc_api/models/db/stage2/comorbidity_orm.py,sha256=Lky_lD8WN0n78gjQ1q6az3E8h2aAHeYob3XUtB9DAK4,923
|
|
51
|
+
cidc_api/models/db/stage2/consent_group_orm.py,sha256=k1nMfd3NuDoYHwU9HR0R9B4FTuw3Evc3cDxQJcw59iE,1141
|
|
52
|
+
cidc_api/models/db/stage2/contact_orm.py,sha256=7nmWtTl3UkO-GFOdiAYTT6_094S1Ozvlcn8fdEsbxeE,1309
|
|
53
|
+
cidc_api/models/db/stage2/demographic_orm.py,sha256=MiTa-Sk9kGcN1Y4O7aDpMtEDEcvY67VXfwEuALXQn_g,1735
|
|
54
|
+
cidc_api/models/db/stage2/disease_orm.py,sha256=ws20FYQkiucyyzuXF2xVurke3_Uf0rFFMfOr9TaYG24,2007
|
|
55
|
+
cidc_api/models/db/stage2/exposure_orm.py,sha256=q1x6GQWvMyJub_QGkXqYggzrvX8_w3QLkUhaj-AzxD8,853
|
|
56
|
+
cidc_api/models/db/stage2/file_orm.py,sha256=Nso0j6BB4WrHUzXcWyxwwTD-jypnxH6pA7GUOsYyXsg,1283
|
|
57
|
+
cidc_api/models/db/stage2/gvhd_diagnosis_acute_orm.py,sha256=MIjVCSSSeX5N_kNWgCXd_AtQDshwZ8SjtICrBRdhBnA,1500
|
|
58
|
+
cidc_api/models/db/stage2/gvhd_diagnosis_chronic_orm.py,sha256=BhlEkGgdZ84G3LOOkcav6M3DKrsDbrbbHMflyn5ikyM,1582
|
|
59
|
+
cidc_api/models/db/stage2/gvhd_organ_acute_orm.py,sha256=B3RTyBtJhSGhKH-1yFZlU5ytko8kPMu3IEJKL080dok,880
|
|
60
|
+
cidc_api/models/db/stage2/gvhd_organ_chronic_orm.py,sha256=FJoQxMv5sQbYyk4_YU77O7h_7NRzlwUOJqCimxYyN6s,904
|
|
61
|
+
cidc_api/models/db/stage2/institution_orm.py,sha256=V58qEfnrhHjPHhYj-udGUqDsvSYb4QHE2eLQdoCdjU4,1278
|
|
62
|
+
cidc_api/models/db/stage2/medical_history_orm.py,sha256=wUVno1vQqMM64YwFng8a-qJgdDGfRNkmMDgo_0cX7dY,1324
|
|
63
|
+
cidc_api/models/db/stage2/other_clinical_endpoint_orm.py,sha256=imK4n7_tHYCNIBVVoQKQNhVVL2x7eE69_9VqBW23Y2I,1133
|
|
64
|
+
cidc_api/models/db/stage2/other_malignancy_orm.py,sha256=opTfuRBl54R-HMvbHjewOLpB79DInfG1x8d3IMmQdaA,1345
|
|
65
|
+
cidc_api/models/db/stage2/participant_orm.py,sha256=CKk4aHjxnDr0ERHG_0jt8fGAqXIEVkqa9k3oqYqnMzE,3725
|
|
66
|
+
cidc_api/models/db/stage2/prior_treatment_orm.py,sha256=xHVnfsxpVSd2JPOojTa7ASB0W0BYISAUjgY4BwwVCoU,1347
|
|
67
|
+
cidc_api/models/db/stage2/publication_orm.py,sha256=u8lkD3Ssbju5t20pOSTt7dZ7Pih25c90ACEhWOULkEU,1070
|
|
68
|
+
cidc_api/models/db/stage2/radiotherapy_dose_orm.py,sha256=bYnh3vBLVA6jNuwDObF3XHkWfEKqRXKH2cfV7BEzNlQ,1542
|
|
69
|
+
cidc_api/models/db/stage2/response_by_system_orm.py,sha256=EBS_P85k0uJNR2-CXygtwm2x2e1umDyyvO_CpkxgraU,1566
|
|
70
|
+
cidc_api/models/db/stage2/response_orm.py,sha256=G5XdroBUKdYva752hbaPsloyRwf7zjrIT6vEhGWlKEY,1205
|
|
71
|
+
cidc_api/models/db/stage2/shipment_orm.py,sha256=dyOhtghwaJCiXk5kis6bkBhfiZyOzKQibNtj_HE5SVQ,2037
|
|
72
|
+
cidc_api/models/db/stage2/shipment_specimen_orm.py,sha256=ozG6CTQ1mPXgOx3_yHrIDQ-CQjtDg1Z2TPMMwX1PrRk,951
|
|
73
|
+
cidc_api/models/db/stage2/specimen_orm.py,sha256=caeHreuRpQek13J_RDXtOet2xzqwfTFbwqN-xNeUcPM,4207
|
|
74
|
+
cidc_api/models/db/stage2/stem_cell_transplant_orm.py,sha256=rrRjW_ZZw7tN5gAXju7ZWAinoVmoNCzjvxlWV71lYx8,1132
|
|
75
|
+
cidc_api/models/db/stage2/surgery_orm.py,sha256=K6FYSQTjXt3OvHUSSoxhAnobAk1oUHpaIgN4dffqr14,1060
|
|
76
|
+
cidc_api/models/db/stage2/therapy_agent_dose_orm.py,sha256=sqxiEhZsuQ-Zn_Wdwf2oJmwjU5A0sq60lgPh7irIj-s,1348
|
|
77
|
+
cidc_api/models/db/stage2/treatment_orm.py,sha256=xGgLSzIgoWpNylnCZAWQ2NElHCGKFmYMnrgqrnSANoQ,1961
|
|
78
|
+
cidc_api/models/db/stage2/trial_orm.py,sha256=OPUwv9lm8zLHvQYJ-XPtNqsppwn8IYXAyuyGoYhlpB4,2897
|
|
79
|
+
cidc_api/models/files/__init__.py,sha256=8BMTnUSHzUbz0lBeEQY6NvApxDD3GMWMduoVMos2g4Y,213
|
|
80
|
+
cidc_api/models/files/details.py,sha256=sZkGM7iEV4-J6IDQCdiMV6KBDLbPxCOqUMaU3aY9rX8,65153
|
|
81
|
+
cidc_api/models/files/facets.py,sha256=rG99wUpHvWHkcRDxTcXz40502Er47l_5hKzP-ORvXGE,33621
|
|
82
|
+
cidc_api/models/pydantic/base.py,sha256=6Lsf4fekIS1E-DwZmgCXlfm3Qq9_23dA_v3iz1w2JoA,1427
|
|
83
|
+
cidc_api/models/pydantic/stage1/__init__.py,sha256=H-NDjCd8isHTgZ7sqz-MIbzC-PpW1kEtR-x-Dyc8r6Q,1667
|
|
84
|
+
cidc_api/models/pydantic/stage1/additional_treatment.py,sha256=TFVzjd1NPLSfH9UnL2W3aZhpZSzDsg97j9IK8t882YA,1050
|
|
85
|
+
cidc_api/models/pydantic/stage1/adverse_event.py,sha256=zPy02xoRQeyaXBSmqDdQt4BaRTD6OHBjycVHVtBaAow,3880
|
|
86
|
+
cidc_api/models/pydantic/stage1/baseline_clinical_assessment.py,sha256=5FYvtOVf_nIK1h3xTs3vQgJe2ivQSVHt_wfrTSDgVxU,1119
|
|
87
|
+
cidc_api/models/pydantic/stage1/comorbidity.py,sha256=dk4SJnkaaju-boexf2SW_rNNGXl-Os2LR5lnIxCb-dA,1413
|
|
88
|
+
cidc_api/models/pydantic/stage1/consent_group.py,sha256=aP_nd0GKK6K7VH-6IZRSDDX2RxFM_j9B36FIRGwysOU,1216
|
|
89
|
+
cidc_api/models/pydantic/stage1/demographic.py,sha256=X0YoFdK7S8JQ9p_Jm3l-R5HgEl9sZnZVFXrECA2i_zw,6007
|
|
90
|
+
cidc_api/models/pydantic/stage1/disease.py,sha256=fwK1FSxTm33BzViGTNsb6AahoDc2BTTXMitCGY3KyDk,7650
|
|
91
|
+
cidc_api/models/pydantic/stage1/exposure.py,sha256=ERoVQLuNWynw2zugh5bVdUT0NzNbJ6fIUmKhPSCQfqk,1306
|
|
92
|
+
cidc_api/models/pydantic/stage1/gvhd_diagnosis_acute.py,sha256=jVMoWuLfspOZtOpC7rg1EzdvEAg8qEabcTaS6RRobZ8,1395
|
|
93
|
+
cidc_api/models/pydantic/stage1/gvhd_diagnosis_chronic.py,sha256=SRwkAL07YyIZM4bYCqm01aKqSvj3yRmpsqFKxAZEZoM,1382
|
|
94
|
+
cidc_api/models/pydantic/stage1/gvhd_organ_acute.py,sha256=VxlNGRJYjm9tW2lyLll8pD0t9JZs18gicnH-Ci_nR2I,771
|
|
95
|
+
cidc_api/models/pydantic/stage1/gvhd_organ_chronic.py,sha256=Fnp1Qm-ZDDtDLrgOAnEOUnQVNWI9WrTSomiFPStGmjc,810
|
|
96
|
+
cidc_api/models/pydantic/stage1/medical_history.py,sha256=IXtEvXrrLhTt6JEsj2MpDiZtLAkmrrsUS4aoe7sxans,1697
|
|
97
|
+
cidc_api/models/pydantic/stage1/other_malignancy.py,sha256=V-Jru6uukipocKs7lDbmkGyJsHBxlM3A3NJoTShjJ9I,2188
|
|
98
|
+
cidc_api/models/pydantic/stage1/participant.py,sha256=iDQrwYYtJY_XrkdbhsRNZuL44ighvW8JHCGxH-qo8jk,2199
|
|
99
|
+
cidc_api/models/pydantic/stage1/prior_treatment.py,sha256=axhyPHwYCoIvcIonjyPJ95HUyaAXqIuOd6hhoDM3LJU,2101
|
|
100
|
+
cidc_api/models/pydantic/stage1/radiotherapy_dose.py,sha256=c5q0TxPOrYHX9KTd9he5B01zirKgcCxMnvW_7adzCrI,3327
|
|
101
|
+
cidc_api/models/pydantic/stage1/response.py,sha256=rPqfYZhaZRcA1E7dkGOaHe9f2_YIcIg9-KtIPSTh1s8,2886
|
|
102
|
+
cidc_api/models/pydantic/stage1/response_by_system.py,sha256=f8ZnLfNXGJLCfFL1X2jxlSUJPGvJKnOCf6PYbJVMXW8,4909
|
|
103
|
+
cidc_api/models/pydantic/stage1/specimen.py,sha256=scDekZ-RtXOQTTLburhqT3RF4KM34iY9NAV1wYi_HSg,1281
|
|
104
|
+
cidc_api/models/pydantic/stage1/stem_cell_transplant.py,sha256=XsDVUksqbIprPxHwLlwHGyji4jsIFNMcIk-S0H4rDnQ,1228
|
|
105
|
+
cidc_api/models/pydantic/stage1/surgery.py,sha256=53NrET_kNOlXXPP-mH5ecIPrNqDpDQt5s9WfsjPDM-s,2149
|
|
106
|
+
cidc_api/models/pydantic/stage1/therapy_agent_dose.py,sha256=Y2L0vAqkfA5eI2qg7iQrqzCORwbkjyVEsthc6f5HKas,3021
|
|
107
|
+
cidc_api/models/pydantic/stage1/treatment.py,sha256=1TeBaDJ352IfB10AtJH2iREdex3SZgDRXNUkhT0FZMo,2033
|
|
108
|
+
cidc_api/models/pydantic/stage1/trial.py,sha256=EFsMVMxxHbPeaBb6JG9JpX1qjtoho2t-GZnaI0gsYrY,1859
|
|
109
|
+
cidc_api/models/pydantic/stage2/__init__.py,sha256=OQRG5wFkNsyAU_0KI1W5PDn8pBDe1EJDcgKZ19shh_g,2331
|
|
110
|
+
cidc_api/models/pydantic/stage2/additional_treatment.py,sha256=TFVzjd1NPLSfH9UnL2W3aZhpZSzDsg97j9IK8t882YA,1050
|
|
111
|
+
cidc_api/models/pydantic/stage2/administrative_person.py,sha256=3UYRgGLP7RukwZYTvQEnviDxBvWXj1uqditsoLJOw0s,1552
|
|
112
|
+
cidc_api/models/pydantic/stage2/administrative_role_assignment.py,sha256=kWUciVSnczjejdBSlynsVxSQ4dytDdgw9OxSvgzParg,536
|
|
113
|
+
cidc_api/models/pydantic/stage2/adverse_event.py,sha256=zPy02xoRQeyaXBSmqDdQt4BaRTD6OHBjycVHVtBaAow,3880
|
|
114
|
+
cidc_api/models/pydantic/stage2/arm.py,sha256=I_gyRUkjyA-Eds3BOu-PUlBGdeGeKiG92ERM8WqA2n8,481
|
|
115
|
+
cidc_api/models/pydantic/stage2/baseline_clinical_assessment.py,sha256=5FYvtOVf_nIK1h3xTs3vQgJe2ivQSVHt_wfrTSDgVxU,1119
|
|
116
|
+
cidc_api/models/pydantic/stage2/cohort.py,sha256=NVlgp8D93nXGPDMSyrAJe-QbmrQfudyuTsc400WyOpg,493
|
|
117
|
+
cidc_api/models/pydantic/stage2/comorbidity.py,sha256=dk4SJnkaaju-boexf2SW_rNNGXl-Os2LR5lnIxCb-dA,1413
|
|
118
|
+
cidc_api/models/pydantic/stage2/consent_group.py,sha256=aP_nd0GKK6K7VH-6IZRSDDX2RxFM_j9B36FIRGwysOU,1216
|
|
119
|
+
cidc_api/models/pydantic/stage2/contact.py,sha256=Nfyy5Zn-n9_LiXG-CzC7OsQo7JrzdPcYjZIielpZiM0,883
|
|
120
|
+
cidc_api/models/pydantic/stage2/demographic.py,sha256=X0YoFdK7S8JQ9p_Jm3l-R5HgEl9sZnZVFXrECA2i_zw,6007
|
|
121
|
+
cidc_api/models/pydantic/stage2/disease.py,sha256=fwK1FSxTm33BzViGTNsb6AahoDc2BTTXMitCGY3KyDk,7650
|
|
122
|
+
cidc_api/models/pydantic/stage2/exposure.py,sha256=ERoVQLuNWynw2zugh5bVdUT0NzNbJ6fIUmKhPSCQfqk,1306
|
|
123
|
+
cidc_api/models/pydantic/stage2/file.py,sha256=MjZQAII_QqakLBhyfP1bq_Mn6au4yvVuwY0p0A5c664,1336
|
|
124
|
+
cidc_api/models/pydantic/stage2/gvhd_diagnosis_acute.py,sha256=jVMoWuLfspOZtOpC7rg1EzdvEAg8qEabcTaS6RRobZ8,1395
|
|
125
|
+
cidc_api/models/pydantic/stage2/gvhd_diagnosis_chronic.py,sha256=SRwkAL07YyIZM4bYCqm01aKqSvj3yRmpsqFKxAZEZoM,1382
|
|
126
|
+
cidc_api/models/pydantic/stage2/gvhd_organ_acute.py,sha256=VxlNGRJYjm9tW2lyLll8pD0t9JZs18gicnH-Ci_nR2I,771
|
|
127
|
+
cidc_api/models/pydantic/stage2/gvhd_organ_chronic.py,sha256=Fnp1Qm-ZDDtDLrgOAnEOUnQVNWI9WrTSomiFPStGmjc,810
|
|
128
|
+
cidc_api/models/pydantic/stage2/institution.py,sha256=41Lod9ryjB3x2jySHp_g3b7g1sj41Q4zwcNsGgXMGZ4,268
|
|
129
|
+
cidc_api/models/pydantic/stage2/medical_history.py,sha256=IXtEvXrrLhTt6JEsj2MpDiZtLAkmrrsUS4aoe7sxans,1697
|
|
130
|
+
cidc_api/models/pydantic/stage2/other_clinical_endpoint.py,sha256=bxZV3qIrrieX4xy3HbKyHdgfpwBcT-abQNlSodVCMns,1093
|
|
131
|
+
cidc_api/models/pydantic/stage2/other_malignancy.py,sha256=V-Jru6uukipocKs7lDbmkGyJsHBxlM3A3NJoTShjJ9I,2188
|
|
132
|
+
cidc_api/models/pydantic/stage2/participant.py,sha256=x7gKHaw46-BbqNCgKWPLnp7U8L2pnAkh7hdByKvG_Kk,2185
|
|
133
|
+
cidc_api/models/pydantic/stage2/prior_treatment.py,sha256=G5Cd8PSYRe3gdeApjQWn15QAErB4nDahMKcVRsr88_c,2011
|
|
134
|
+
cidc_api/models/pydantic/stage2/publication.py,sha256=GBuvqBf0lyOoopN1S-3qX310xFxhixk7oDJLuGzLuiw,1817
|
|
135
|
+
cidc_api/models/pydantic/stage2/radiotherapy_dose.py,sha256=c5q0TxPOrYHX9KTd9he5B01zirKgcCxMnvW_7adzCrI,3327
|
|
136
|
+
cidc_api/models/pydantic/stage2/response.py,sha256=rPqfYZhaZRcA1E7dkGOaHe9f2_YIcIg9-KtIPSTh1s8,2886
|
|
137
|
+
cidc_api/models/pydantic/stage2/response_by_system.py,sha256=f8ZnLfNXGJLCfFL1X2jxlSUJPGvJKnOCf6PYbJVMXW8,4909
|
|
138
|
+
cidc_api/models/pydantic/stage2/shipment.py,sha256=dsZcDPikCRS3cjr58EGHHJ2gjir78J4cdHh_1SwFyrQ,1595
|
|
139
|
+
cidc_api/models/pydantic/stage2/shipment_specimen.py,sha256=exR7joXsH3Xd-o5vJV_Z-az33Edr8BBm5LCDv01iMI4,488
|
|
140
|
+
cidc_api/models/pydantic/stage2/specimen.py,sha256=JchTeb4QSyPplZmP_gMxEsaIXVDlGI_z85xR5JG4JYY,8524
|
|
141
|
+
cidc_api/models/pydantic/stage2/stem_cell_transplant.py,sha256=XsDVUksqbIprPxHwLlwHGyji4jsIFNMcIk-S0H4rDnQ,1228
|
|
142
|
+
cidc_api/models/pydantic/stage2/surgery.py,sha256=53NrET_kNOlXXPP-mH5ecIPrNqDpDQt5s9WfsjPDM-s,2149
|
|
143
|
+
cidc_api/models/pydantic/stage2/therapy_agent_dose.py,sha256=Y2L0vAqkfA5eI2qg7iQrqzCORwbkjyVEsthc6f5HKas,3021
|
|
144
|
+
cidc_api/models/pydantic/stage2/treatment.py,sha256=dr23yeK5x0dKYZV32hgECFe_Y-GkSvdf4P3FdVn6F1Q,2039
|
|
145
|
+
cidc_api/models/pydantic/stage2/trial.py,sha256=PftvFY27s3quVBg1Sau1JdskUSMM0huIeGP-018fi5o,4020
|
|
146
|
+
cidc_api/reference/ctcae.py,sha256=H5JvDQ5R5kYbK37UxjhmXMnKD3d40HmG0DONxfhNxnE,871
|
|
147
|
+
cidc_api/reference/gvhd.py,sha256=r5jbHEa5yos0tmghjiruAeXI-r-4lU81JKCUpMHtO14,194
|
|
148
|
+
cidc_api/reference/icd10cm.py,sha256=K1vbTQB75uAQeKgj0U9izhtMKVb2vqp69_hyx3z_jro,300
|
|
149
|
+
cidc_api/reference/icdo3.py,sha256=A19yNX5-9Gs3X83kXcTlGgsXDTTJ9yR2dxEIoBVmpmU,296
|
|
150
|
+
cidc_api/reference/uberon.py,sha256=BO2mYNDvPzZyLdhL_ZjCyEgHSLHuVifnTJvfktUfVWA,148
|
|
151
|
+
cidc_api/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
+
cidc_api/shared/assay_handling.py,sha256=zzWSqQ-ddLVzX5IuHvsaSib2H1lnjXpo9LbxaoqaHHs,2897
|
|
153
|
+
cidc_api/shared/auth.py,sha256=EIP9AKokLNrI79Fkpv3P7WdzaddJIsuGGICc1W494X0,9110
|
|
154
|
+
cidc_api/shared/email_layout.html,sha256=pBoTNw3ACHH-ncZFaNvcy5bXMqPwizR78usb0uCYtIc,7670
|
|
155
|
+
cidc_api/shared/emails.py,sha256=8kNFEaSnKpY-GX_iE59QUhSp3c4_uzy3SpHYt2QjuqI,6121
|
|
156
|
+
cidc_api/shared/file_handling.py,sha256=ahzVZnhg23DloaopKVvCzgw_vHc6c8vxxZdAKR38sjI,5636
|
|
157
|
+
cidc_api/shared/gcloud_client.py,sha256=l40qQ0lo2QQkWfarXlApmI7iPeYzYoEEXBvemyizYnc,38421
|
|
158
|
+
cidc_api/shared/jose.py,sha256=-qzGzEDAlokEp9E7WtBtQkXyyfPWTYXlwYpCqVJWmqM,1830
|
|
159
|
+
cidc_api/shared/rest_utils.py,sha256=RwR30WOUAYCxL7V-i2totEyeriG30GbBDvBcpLXhM9w,6594
|
|
160
|
+
cidc_api/shared/utils.py,sha256=-gLnzxCR9E6h0plt2xrNisUG5_Y6GhhVwz3DgDIzpvs,367
|
|
161
|
+
nci_cidc_api_modules-1.2.41.dist-info/licenses/LICENSE,sha256=pNYWVTHaYonnmJyplmeAp7tQAjosmDpAWjb34jjv7Xs,1102
|
|
162
|
+
nci_cidc_api_modules-1.2.41.dist-info/METADATA,sha256=I7Jv9_ZUIGpztAc2otMlUdxEQLqrdE5oUq0c4s-uqOM,40229
|
|
163
|
+
nci_cidc_api_modules-1.2.41.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
164
|
+
nci_cidc_api_modules-1.2.41.dist-info/top_level.txt,sha256=rNiRzL0lJGi5Q9tY9uSoMdTbJ-7u5c_D2E86KA94yRA,9
|
|
165
|
+
nci_cidc_api_modules-1.2.41.dist-info/RECORD,,
|