Skip to content

Commit

Permalink
revert join checks
Browse files Browse the repository at this point in the history
  • Loading branch information
nkwang24 committed Oct 18, 2024
1 parent 3032235 commit e600366
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions module/predict_stability.nf
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ workflow workflow_predict_stability {

run_apply_stability_annotations(
vcf_with_sample_id.join(
compress_and_index_tsv.out.compressed_tsv_with_index
// failOnDuplicate: true,
// failOnMismatch: true
compress_and_index_tsv.out.compressed_tsv_with_index,
failOnDuplicate: true,
failOnMismatch: true
),
variant_caller,
dest_fasta_id
Expand Down
6 changes: 3 additions & 3 deletions module/snv_annotations.nf
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ workflow workflow_annotate_snvs {

annotate_trinucleotide_BCFtools(
annotate_RepeatMasker_BCFtools.out.repeatmasker_vcf.join(
compress_and_index_tsv.out.compressed_tsv_with_index
// failOnDuplicate: true,
// failOnMismatch: true
compress_and_index_tsv.out.compressed_tsv_with_index,
failOnDuplicate: true,
failOnMismatch: true
)
)

Expand Down

0 comments on commit e600366

Please sign in to comment.