Skip to content

Commit bb48d33

Browse files
authored
Release v0.4.1
1 parent 72ce58a commit bb48d33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pipeface.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ process mosdepth {
280280
process clair3 {
281281

282282
input:
283-
tuple val(sample_id), val(family_id), path(bam), val(regions_of_interest), val(clair3_model)
283+
tuple val(sample_id), val(family_id), path(bam), val(data_type), val(regions_of_interest), val(clair3_model)
284284
val ref
285285
val ref_index
286286

@@ -1216,7 +1216,7 @@ workflow {
12161216
}
12171217
// snp/indel calling
12181218
if ( snp_indel_caller == 'clair3' ) {
1219-
snp_indel_vcf_bam = clair3(bam.join(regions_of_interest_tuple, by: [0,1]).join(clair3_model_tuple, by: [0,1]), ref, ref_index)
1219+
snp_indel_vcf_bam = clair3(bam.join(data_type_tuple, by: [0,1]).join(regions_of_interest_tuple, by: [0,1]).join(clair3_model_tuple, by: [0,1]), ref, ref_index)
12201220
}
12211221
else if ( snp_indel_caller == 'deepvariant' ) {
12221222
deepvariant_dry_run(bam.join(data_type_tuple, by: [0,1]), ref, ref_index)

0 commit comments

Comments
 (0)