Skip to content

Commit

Permalink
check if exists
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Oct 18, 2024
1 parent 421a94c commit e2ffa36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ workflow {
data_to_annotation_raw = genomes.join(annotations)
data_to_annotation = data_to_annotation_raw.join(extraexons, remainder: true)

evodists_ch = Channel.fromPath(params.evodists)
clusterfile_ch = Channel.fromPath(params.cluster)
evodists_ch = Channel.fromPath(params.evodists, checkIfExists: true)
clusterfile_ch = Channel.fromPath(params.cluster, checkIfExists: true)
if ( params.orthopairs ) {
orthopairs_ch = file(params.orthopairs)
} else {
Expand Down

0 comments on commit e2ffa36

Please sign in to comment.