Skip to content

Commit

Permalink
do not cache install processes
Browse files Browse the repository at this point in the history
  • Loading branch information
riederd committed Sep 29, 2021
1 parent 50006c7 commit be7bdea
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions nextNEOpi.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6666,6 +6666,9 @@ if(have_HLAHD) {

tag 'install mixMHC2pred'

// do not cache
cache false

output:
file(".mixmhc2pred_install_ok.chck") into mixmhc2pred_chck_ch

Expand All @@ -6682,6 +6685,9 @@ if(have_HLAHD) {

tag 'link mixMHC2pred'

// do not cache
cache false

output:
file(".mixmhc2pred_install_ok.chck") into mixmhc2pred_chck_ch

Expand Down Expand Up @@ -6850,6 +6856,9 @@ if(( ! igs_chck_file.exists() || igs_chck_file.isEmpty()) && params.IGS == "") {

tag 'install IGS'

// do not cache
cache false

output:
file(".igs_install_ok.chck") into igs_chck_ch

Expand All @@ -6869,6 +6878,9 @@ if(( ! igs_chck_file.exists() || igs_chck_file.isEmpty()) && params.IGS == "") {

tag 'link IGS'

// do not cache
cache false

output:
file(".igs_install_ok.chck") into igs_chck_ch

Expand Down Expand Up @@ -6935,6 +6947,9 @@ if(params.TCR) {

tag 'install mixcr'

// do not cache
cache false

output:
file(".mixcr_install_ok.chck") into (
mixcr_chck_ch0,
Expand All @@ -6958,6 +6973,9 @@ if(params.TCR) {

tag 'link mixcr'

// do not cache
cache false

output:
file(".mixcr_install_ok.chck") into (
mixcr_chck_ch0,
Expand Down

0 comments on commit be7bdea

Please sign in to comment.