Skip to content

Commit b0da6ed

Browse files
Some updates on hite
1 parent 2bf321f commit b0da6ed

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

conf/base.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,10 @@ process {
7979
cpus = { 8 * task.attempt }
8080
}
8181

82+
withName:'HITE' {
83+
cpus = { 8 * task.attempt }
84+
memory = { 12.GB * task.attempt }
85+
time = { 10.h * task.attempt }
86+
}
8287

8388
}

conf/modules.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ process {
294294

295295
withName: 'HITE' {
296296
ext.args = '--annotate 1'
297+
cache = !params.hite_disable_cache
297298
publishDir = [
298299
path: { "${params.outdir}/hite" },
299300
mode: params.publish_dir_mode,

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ params {
6969

7070
// HiTE
7171
run_hite = false
72+
hite_disable_cache = false
7273

7374
// MultiQC options
7475
multiqc_config = null

workflows/genomeqc.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ workflow GENOMEQC {
188188
[]
189189
)
190190
}
191+
ch_versions = ch_versions.mix(FASTA_EXPLORE_SEARCH_PLOT_TIDK.out.versions.first())
191192

192193
// Merqury: Evaluate genome assemblies with k-mers and more
193194
// https://github.com/marbl/merqury

0 commit comments

Comments
 (0)