Skip to content

Commit

Permalink
fix(ppm): Hotfix for adding upcoming data providers and fixing RANT i…
Browse files Browse the repository at this point in the history
…tem specification
  • Loading branch information
b32147 committed Oct 21, 2020
1 parent 21e6ca3 commit 4776cdb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ppmutils/ppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,8 @@ class Provider(Enum):
SMART = "smart"
File = "file"
Qualtrics = "qualtrics"
ImmunoSEQ = "immunoseq"
Procure = "procure"

@classmethod
def enum(cls, enum):
Expand Down Expand Up @@ -941,6 +943,8 @@ def choices(cls):
(PPM.Provider.SMART.value, "SMART on FHIR"),
(PPM.Provider.File.value, "PPM Files"),
(PPM.Provider.Qualtrics.value, "Qualtrics Surveys"),
(PPM.Provider.ImmunoSEQ.value, "immunoSEQ"),
(PPM.Provider.Procure.value, "Procure"),
)

@classmethod
Expand Down Expand Up @@ -1003,8 +1007,6 @@ def devices(study=None):
PPM.TrackedItem.BloodSampleKit.value,
],
PPM.Study.RANT.value: [
PPM.TrackedItem.Fitbit.value,
PPM.TrackedItem.uBiomeFecalSampleKit.value,
PPM.TrackedItem.BloodSampleKit.value,
],
PPM.Study.ASD.value: [
Expand Down

0 comments on commit 4776cdb

Please sign in to comment.