Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
NXF_VER: "25.04.7"

Expand Down
3 changes: 1 addition & 2 deletions modules/process/SNV/SomaticAnnotateMaf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ process SomaticAnnotateMaf {
input:
tuple val(idTumor), val(idNormal), val(target), path(vcfMerged)
tuple path(genomeFile), path(genomeIndex), path(genomeDict), path(vepCache), path(isoforms)
path(oncokb_genes) // used for test, test_singularity profile only

output:
tuple val(idTumor), val(idNormal), val(target), path("${outputPrefix}.maf"), emit: mafFile
Expand Down Expand Up @@ -66,6 +65,6 @@ process SomaticAnnotateMaf {
--normal-panel-count ${params.somaticVariant.ponCount} \
--maf-file ${outputPrefix}.raw.oncokb.maf \
--output-prefix ${outputPrefix} \
--onco "${["test","test_singularity"].contains(workflow.profile) ? oncokb_genes : "https://data-legacy.oncokb.aws.mskcc.org/api/v1/genes/" }"
--onco ${["test","test_singularity"].contains(workflow.profile) ? "\$(echo '[]' > empty.json && echo empty.json)" : "'https://data-legacy.oncokb.aws.mskcc.org/api/v1/genes/'" }
"""
}
6 changes: 1 addition & 5 deletions modules/subworkflow/snv_wf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,7 @@ workflow snv_wf

SomaticAnnotateMaf(SomaticCombineChannel.out.mutationMergedVcf,
Channel.value([referenceMap.genomeFile, referenceMap.genomeIndex, referenceMap.genomeDict,
referenceMap.vepCache, referenceMap.isoforms]),
["test","test_singularity"].contains(workflow.profile) ?
Channel.value([file(workflow.projectDir + "/containers/vcf2maf/oncokb_genes.json")]) :
Channel.value([])
)
referenceMap.vepCache, referenceMap.isoforms]))


hlaOutput.combine(SomaticAnnotateMaf.out.mafFile, by: [1,2]).set{ input4Neoantigen }
Expand Down