Skip to content

Commit

Permalink
s/run_intersect_gnomad/annotate_gnomAD_StableLift/
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Aug 2, 2024
1 parent b12a428 commit eb8983a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module/sv_workflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ process run_sort_BCFtools {
"""
}

process run_intersect_gnomad {
process annotate_gnomAD_StableLift {
container params.docker_image_stablelift

publishDir path: "${params.output_dir_base}/intermediate/${task.process.replace(':', '/')}",
Expand Down Expand Up @@ -115,13 +115,13 @@ workflow workflow_extract_sv_annotations {
)

// Step 2: Extract features
run_intersect_gnomad(
annotate_gnomAD_StableLift(
run_sort_BCFtools.out.sorted_vcf,
gnomad_rds,
variant_caller
)

emit:
liftover_vcf = run_sort_BCFtools.out.sorted_vcf
r_annotations = run_intersect_gnomad.out.r_annotations
r_annotations = annotate_gnomAD_StableLift.out.r_annotations
}

0 comments on commit eb8983a

Please sign in to comment.