Skip to content

Commit

Permalink
Merge main into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sorelfitzgibbon committed Sep 25, 2023
2 parents 745a5ec + a860454 commit 16346a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Fix blarchive compression log output directory
- Delay readcount compression until original file is no longer needed

## [7.0.0-rc.1] - 2023-08-28

Expand Down
8 changes: 6 additions & 2 deletions module/somaticsniper.nf
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ workflow somaticsniper {
generate_ReadCount_bam_readcount(params.reference,create_ReadCountPosition_SomaticSniper.out.snp_positions, tumor_bam, tumor_index)
filter_FalsePositive_SomaticSniper(apply_TumorIndelFilter_SomaticSniper.out.vcf_tumor, generate_ReadCount_bam_readcount.out.readcount)
call_HighConfidenceSNV_SomaticSniper(filter_FalsePositive_SomaticSniper.out.fp_pass)
compress_file_blarchive(generate_ReadCount_bam_readcount.out.readcount
.map{ it -> ['readcount', it] })
// combining to delay compression until after filtering step
compress_file_blarchive(
generate_ReadCount_bam_readcount.out.readcount
.combine(filter_FalsePositive_SomaticSniper.out.fp_pass.collect())
.map{ it -> ['readcount', it[0]] }
)
// rename_samples_BCFtools needs bgzipped input
compress_index_VCF_hc(call_HighConfidenceSNV_SomaticSniper.out.hc
.map{ it -> ['SNV', it] })
Expand Down

0 comments on commit 16346a3

Please sign in to comment.