Skip to content

Commit

Permalink
merge samples when combining m2 results
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Jul 9, 2024
1 parent b75b146 commit bd37722
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Prioritization of neoantigens is now done separately for each variant type (speeds up the process)
- NMD information (e.g., escape rule,...) is now also calculated for all variants

## [0.2.10] - 2024-07-08

### Fix

- Allow to combine multiple VCF files in indel detection using mutect2 (e.g., when multiple samples are provided)

## [0.2.9] - 2024-07-04

### Fix
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/indel.smk
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ rule combine_aug_short_indels_m2:
"../envs/bcftools.yml"
shell:
"""
bcftools concat --naive -O z {input} -o - | bcftools sort -O z -o {output} > {log} 2>&1
bcftools concat --naive-force -O z {input} -o - | bcftools sort -O z -o {output} > {log} 2>&1
"""

rule select_SNVs_m2:
Expand Down

0 comments on commit bd37722

Please sign in to comment.