Load the characterization settings previously saved as a json file
Source:R/RunCharacterization.R
loadCharacterizationSettings.Rd
This function converts the json file back into an R object
Details
Input the directory containing the 'characterizationSettings.json' file and load the settings into R
See also
Other LargeScale:
createCharacterizationSettings()
,
runCharacterizationAnalyses()
,
saveCharacterizationSettings()
Examples
# example code
setPath <- file.path(tempdir(), 'charSet.json')
drSet <- createDechallengeRechallengeSettings(
targetIds = c(1,2),
outcomeIds = 3
)
cSet <- createCharacterizationSettings(
dechallengeRechallengeSettings = drSet
)
saveCharacterizationSettings(
settings = cSet,
fileName = setPath
)
setting <- loadCharacterizationSettings(setPath)