Skip to content

Commit

Permalink
should work
Browse files Browse the repository at this point in the history
  • Loading branch information
famosab committed Nov 1, 2024
1 parent 13c8adf commit 77e713a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions subworkflows/local/vcf_benchmark/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ workflow VCF_BENCHMARK {
fai // reference channel [val(meta), ref.fa.fai]

main:
input_ch.view()
versions = Channel.empty()
summary_reports = Channel.empty()

Expand All @@ -40,11 +41,8 @@ workflow VCF_BENCHMARK {
versions = versions.mix(RTGTOOLS_FORMAT.out.versions)
sdf = RTGTOOLS_FORMAT.out.sdf

query_ch = Channel.from(input_ch)
truth_ch = Channel.from(input_truth)

// Combine input_ch and input_truth with query_vcf_tbi and truth_vcf_tbi
combined_inputs = query_ch.combine(truth_ch)
combined_inputs = input_ch.combine(input_truth)
.combine(truth_bed)
.combine(query_vcf_tbi)
.combine(truth_vcf_tbi)
Expand Down

0 comments on commit 77e713a

Please sign in to comment.