Skip to content

Commit

Permalink
Remove genome from the subworkflow, too
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeltrame committed Oct 29, 2024
1 parent 59c1545 commit 25b55df
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ workflow BAM_VARIANT_CALLING_SOMATIC_PURECN {
fasta // channel: [mandatory] fasta needed for cram
fasta_fai // channel: [mandatory] fasta index needed by GATK
dict // channel: [mandatory] fasta dictionary needed by GATK
genome // channel: [mandatory] genome used for interval parsing
normaldb // channel: [mandatory] panel of normals built by PureCN
gatk_pon // channel: [mandatory] panel of normals used by GATK for denoising
intervals_bed // channel: [mandatory] BED file processed by PureCN
Expand Down Expand Up @@ -47,7 +46,7 @@ workflow BAM_VARIANT_CALLING_SOMATIC_PURECN {
}

//FIXME: PURECN_RUN upstream should require a VCF file here
PURECN_RUN(ch_purecn_in, normaldb, genome)
PURECN_RUN(ch_purecn_in, normaldb)
ch_versions = ch_versions.mix(PURECN_RUN.out.versions)

emit:
Expand Down

0 comments on commit 25b55df

Please sign in to comment.