You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Study_Assess errors out when expected data is not found in lData
Current Behavior
RunStep passes params to FilterDomain without a df parameter here, which causes is_mapping_valid to error out when checking is.data.frame() on a missing parameter.
Possible Solution
Check for if(any(c('df', 'dfs') %in% names(params))here, and then run do.call, else skip the run and pass lChecks and lChecks$status == FALSE back to RunAssessment
Or, possibly another option upstream, but needs some consideration in order to output useful error checking.
Expected Behavior
Study_Assess
errors out when expected data is not found inlData
Current Behavior
RunStep
passesparams
toFilterDomain
without adf
parameter here, which causesis_mapping_valid
to error out when checkingis.data.frame()
on a missing parameter.Possible Solution
Check for
if(any(c('df', 'dfs') %in% names(params))
here, and then rundo.call
, else skip the run and passlChecks
andlChecks$status == FALSE
back toRunAssessment
Or, possibly another option upstream, but needs some consideration in order to output useful error checking.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: