Skip to content

Commit

Permalink
fix issue 1070 (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 authored Sep 30, 2024
1 parent a461f0a commit af79c33
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions R/RunDiagnostics.R
Original file line number Diff line number Diff line change
Expand Up @@ -228,21 +228,20 @@ executeDiagnostics <- function(cohortDefinitionSet,
seed = 64374,
seedArgs = NULL) {
# collect arguments that were passed to cohort diagnostics at initiation
callingArgs <- formals(executeDiagnostics)
callingArgsJson <-
list(
runInclusionStatistics = callingArgs$runInclusionStatistics,
runIncludedSourceConcepts = callingArgs$runIncludedSourceConcepts,
runOrphanConcepts = callingArgs$runOrphanConcepts,
runTimeSeries = callingArgs$runTimeSeries,
runVisitContext = callingArgs$runVisitContext,
runBreakdownIndexEvents = callingArgs$runBreakdownIndexEvents,
runIncidenceRate = callingArgs$runIncidenceRate,
runTemporalCohortCharacterization = callingArgs$runTemporalCohortCharacterization,
minCellCount = callingArgs$minCellCount,
minCharacterizationMean = callingArgs$minCharacterizationMean,
incremental = callingArgs$incremental,
temporalCovariateSettings = callingArgs$temporalCovariateSettings
runInclusionStatistics = runInclusionStatistics,
runIncludedSourceConcepts = runIncludedSourceConcepts,
runOrphanConcepts = runOrphanConcepts,
runTimeSeries = runTimeSeries,
runVisitContext = runVisitContext,
runBreakdownIndexEvents = runBreakdownIndexEvents,
runIncidenceRate = runIncidenceRate,
runTemporalCohortCharacterization = runTemporalCohortCharacterization,
minCellCount = minCellCount,
minCharacterizationMean = minCharacterizationMean,
incremental = incremental,
temporalCovariateSettings = temporalCovariateSettings
) %>%
RJSONIO::toJSON(digits = 23, pretty = TRUE)

Expand Down

0 comments on commit af79c33

Please sign in to comment.