Skip to content

Commit

Permalink
fix: combinefilter reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dnousome committed Nov 22, 2024
1 parent d7e7504 commit 8a27c35
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/local/combinefilter.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
GENOMEREF=file(params.genomes[params.genome].genome)
GENOMEFAI=file(params.genomes[params.genome].genomefai)
GENOMEDICT=file(params.genomes[params.genome].genomedict)
GERMLINE_RESOURCE=file(params.genomes[params.genome].germline_resource)


process combineVariants {
Expand Down Expand Up @@ -81,7 +80,7 @@ process combineVariants_alternative {
script:
vcfin = vcfs.join(" ")
samplist=sample.split('_vs_')
if (vc.contains("lofreq")) {
if (vc.contains("lofreq") | vc.contains('deepsomatic')) {
samporder = samplist[0]
}else if(samplist.size()>1){
samporder = samplist.join(",")
Expand Down

0 comments on commit 8a27c35

Please sign in to comment.