Skip to content

Commit

Permalink
Fix the input so that all processes run
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenceKuhl committed Sep 6, 2024
1 parent e5467c9 commit 516ff4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/utils_nfcore_crisprseq_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ workflow INITIALISATION_CHANNEL_CREATION_SCREENING {
}


ch_biogrid = Channel.fromPath("$projectDir/assets/biogrid_hgncid_noduplicate_dropna.csv", checkIfExists: true)
ch_hgnc = Channel.fromPath("$projectDir/assets/hgnc_complete_set.txt", checkIfExists: true)
ch_biogrid = Channel.fromPath("$projectDir/assets/biogrid_hgncid_noduplicate_dropna.csv", checkIfExists: true).first()
ch_hgnc = Channel.fromPath("$projectDir/assets/hgnc_complete_set.txt", checkIfExists: true).first()

if(params.mle_control_sgrna) {
ch_mle_control_sgrna = Channel.fromPath(params.mle_control_sgrna)
Expand Down

0 comments on commit 516ff4c

Please sign in to comment.