Skip to content

Commit

Permalink
plot_venn_R -> plot_VennDiagram_R
Browse files Browse the repository at this point in the history
  • Loading branch information
sorelfitzgibbon committed Aug 2, 2023
1 parent 887ab0b commit d003dd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module/intersect-processes.nf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ process intersect_VCFs_BCFtools {
"""
}

process plot_venn_R {
process plot_VennDiagram_R {
container params.docker_image_r_VennDiagram
publishDir path: "${params.workflow_output_dir}/output",
mode: "copy",
Expand Down
4 changes: 2 additions & 2 deletions module/intersect.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include { generate_sha512sum } from './common'
include { intersect_VCFs_BCFtools; plot_venn_R } from './intersect-processes.nf'
include { intersect_VCFs_BCFtools; plot_VennDiagram_R } from './intersect-processes.nf'

workflow intersect {
// pass bin directory in project folder as channel into docker
Expand All @@ -24,7 +24,7 @@ workflow intersect {
.map{ it -> ["${file(it).getName().split('_')[0]}-SNV-idx", it]}
)
generate_sha512sum(file_for_sha512)
plot_venn_R(
plot_VennDiagram_R(
script_dir_ch,
intersect_VCFs_BCFtools.out.isec_dir,
)
Expand Down

0 comments on commit d003dd7

Please sign in to comment.