Save the characterization settings as a json
Source:R/RunCharacterization.R
saveCharacterizationSettings.Rd
This function converts the settings into a json object and saves it
Details
Input the characterization settings and output a json file to a file named 'characterizationSettings.json' inside the saveDirectory
See also
Other LargeScale:
createCharacterizationSettings()
,
loadCharacterizationSettings()
,
runCharacterizationAnalyses()
Examples
drSet <- createDechallengeRechallengeSettings(
targetIds = c(1,2),
outcomeIds = 3
)
cSet <- createCharacterizationSettings(
dechallengeRechallengeSettings = drSet
)
saveCharacterizationSettings(
settings = cSet,
fileName = file.path(tempdir(), 'cSet.json')
)