Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Jun 23, 2020
2 parents 2860623 + ff2ac6a commit e6b97db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/awsfulltest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nf-core AWS test
name: nf-core AWS full test
# This workflow is triggered on push to the master branch and on published releases.
# It runs the -profile 'test' on AWS batch
# It runs the -profile 'test_full' on AWS batch

on:
release:
Expand Down
8 changes: 6 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2705,8 +2705,8 @@ process FilterMutect2Calls {
file(germlineResource) from ch_germline_resource
file(germlineResourceIndex) from ch_germline_resource_tbi
file(intervals) from ch_intervals
output:

output:
set val("Mutect2"), idPatient, idSamplePair, file("Mutect2_filtered_${idSamplePair}.vcf.gz"), file("Mutect2_filtered_${idSamplePair}.vcf.gz.tbi"), file("Mutect2_filtered_${idSamplePair}.vcf.gz.filteringStats.tsv") into filteredMutect2Output

when: 'mutect2' in tools
Expand Down Expand Up @@ -3382,6 +3382,10 @@ controlFreecVizOut.dump(tag:'ControlFreecViz')
(vcfMantaSomaticSV, vcfMantaDiploidSV) = vcfManta.into(2)

vcfKeep = Channel.empty().mix(
filteredMutect2Output.map{
variantCaller, idPatient, idSample, vcf, tbi, tsv ->
[variantcaller, idSample, vcf]
},
vcfConcatenated.map{
variantcaller, idPatient, idSample, vcf, tbi ->
[variantcaller, idSample, vcf]
Expand Down

0 comments on commit e6b97db

Please sign in to comment.