Skip to content

Commit

Permalink
fix: build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dnousome committed Jan 2, 2025
1 parent 95be395 commit 3edf8aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install nextflow
uses: nf-core/setup-nextflow@v2
with:
version: "24.10.2"
version: "24.04.4"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down
16 changes: 9 additions & 7 deletions subworkflows/local/workflows.nf
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ workflow VC {
vc_ffpe_tonly=vc_ffpe_tonly |concat(varscan_tonly_ffpe_out)
}
}

}

//Combine All Variants Using VCF -> Annotate
if (call_list.size()>1){
Expand All @@ -814,7 +814,8 @@ workflow VC {
| annotvep_tonly_combined_ffpe
}
}



if("sage" in call_list){
somaticcall_input=sage_in
}else if("mutect2" in call_list){
Expand All @@ -824,7 +825,8 @@ workflow VC {
}else{
somaticcall_input=Channel.empty()
}
}



emit:
somaticcall_input
Expand Down Expand Up @@ -1245,11 +1247,11 @@ workflow INPUT_BAM {

bamwithsample=baminput2.combine(sample_sheet,by:0).map{it.swap(3,0)}.combine(baminputonly,by:0).map{it.swap(3,0)}
| view()
} else {
}else{
bamwithsample=baminputonly.combine(sample_sheet,by:0).map{it.swap(3,0)}.combine(baminputonly,by:0).map{it.swap(3,0)}
|view()

}
| view()
}

bambyinterval_norm=bamwithsample
| map {tumo,tubam,tbai,norm,norbam,norbai -> tuple(norm,norbam,norbai)}
bambyinterval_tum=bamwithsample
Expand Down

0 comments on commit 3edf8aa

Please sign in to comment.