Replies: 1 comment
-
Workflow 02Modified at each step while uncertain TRUEI need some help about what we want to include at each stepstudy design
this is all the available study design so I hand picked only that are parallel.
filter selected study design: date
this is the STSTDTC column where there is NOT_VALID_MSG So I looked into all the related studies. EXPENDTC is available for all those STSTDC except "NOT AVAILABLE" one.
Questions: should I remove all the STSTDTC where there is a valid message?control animals
sex
species
we get lot of different strain for RAT.
question: which strain we want to hand pick?Route
these are the different route, I will only include "ORAL GAVAGE" and "INTRAVENOUS" |
Beta Was this translation helpful? Give feedback.
-
workflow 01
Include uncertain in all appropriate case
we are good for this workflow
designStudies_T <- getStudiesSDESIGN(dbToken = myDbToken, studyDesignFilter = 'PARALLEL', inclUncertain = TRUE)
dateStudies_T <- getStudiesSTSTDTC(dbToken = myDbToken, studyList = designStudies_T, inclUncertain = TRUE)
controlAnimals_T <- getControlSubj(dbToken = myDbToken, studyList = dateStudies_T, inclUncertain = TRUE)
animals_sex_T <- getSubjSex(myDbToken, controlAnimals_T, inclUncertain = TRUE, sexFilter = "M")
animals_species_T <- getSubjSpeciesStrain(myDbToken, animals_sex_T, inclUncertain = TRUE, speciesFilter = "RAT")
animals_route_T <- getSubjRoute(myDbToken, animals_species_T, inclUncertain = TRUE, routeFilter = c('ORAL GAVAGE', 'INTRAVENOUS'))
DSdata_T <- getSubjData(dbToken = myDbToken, animalList = animals_route_T, 'ds')
MIdata_T <- getSubjData(dbToken = myDbToken, animalList = animals_route_T, 'mi')
DSanimals_T <- merge(DSdata_T[,c('USUBJID', 'DSSTDY')], animals_route_T, by = 'USUBJID', allow.cartesian = T)
Beta Was this translation helpful? Give feedback.
All reactions