Skip to content

Commit

Permalink
update estimators config function call
Browse files Browse the repository at this point in the history
  • Loading branch information
roskamsh committed Nov 7, 2024
1 parent 7566e15 commit 3742c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/targene.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include { processEstimatorsConfig } from '../modules/utils.nf'
include { CreateEstimatorsConfigChannel } from '../modules/utils.nf'
include { PCA } from './pca.nf'
include { EstimationInputs } from '../modules/estimation_inputs.nf'
include { EstimationWorkflow } from '../subworkflows/estimation.nf'
Expand All @@ -8,7 +8,7 @@ workflow TARGENE {
// Define Parameters
bgen_files = Channel.fromPath("$params.BGEN_FILES", checkIfExists: true).collect().toList()
estimands_file = Channel.value(file("$params.ESTIMANDS_CONFIG"))
estimator_config = Channel.value(file(processEstimatorsConfig(params.ESTIMATORS_CONFIG)))
estimator_config = CreateEstimatorsConfigChannel(params.ESTIMATORS_CONFIG)

// PCA
PCA()
Expand Down

0 comments on commit 3742c5b

Please sign in to comment.