1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-13 07:23:10 +00:00

Try to reduce MALT memory

This commit is contained in:
James Fellows Yates 2022-11-24 15:51:12 +01:00
parent 131b39aa8b
commit a20b3e3c58
5 changed files with 12 additions and 7 deletions

View file

@ -51,6 +51,7 @@ params {
process {
withName: MALT_RUN {
maxForks = 1
ext.args = "-m ${params.malt_mode} -J-Xmx8G"
}
withName: MEGAN_RMA2INFO_TSV {
maxForks = 1

View file

@ -45,5 +45,6 @@ params {
process {
withName: MALT_RUN {
maxForks = 1
ext.args = "-m ${params.malt_mode} -J-Xmx8G"
}
}

View file

@ -44,5 +44,6 @@ params {
process {
withName: MALT_RUN {
maxForks = 1
ext.args = "-m ${params.malt_mode} -J-Xmx8G"
}
}

View file

@ -37,6 +37,7 @@ params {
process {
withName: MALT_RUN {
maxForks = 1
ext.args = "-m ${params.malt_mode} -J-Xmx8G"
}
withName: MEGAN_RMA2INFO {
maxForks = 1

View file

@ -12,9 +12,9 @@ class WorkflowMain {
// TODO nf-core: Add Zenodo DOI for pipeline after first release
//"* The pipeline\n" +
//" https://doi.org/10.5281/zenodo.XXXXXXX\n\n" +
"* The nf-core framework\n" +
" https://doi.org/10.1038/s41587-020-0439-x\n\n" +
"* Software dependencies\n" +
'* The nf-core framework\n' +
' https://doi.org/10.1038/s41587-020-0439-x\n\n' +
'* Software dependencies\n' +
" https://github.com/${workflow.manifest.name}/blob/master/CITATIONS.md"
}
@ -53,15 +53,15 @@ class WorkflowMain {
System.exit(0)
}
// Print parameter summary log to screen
log.info paramsSummaryLog(workflow, params, log)
// Validate workflow parameters via the JSON schema
if (params.validate_params) {
NfcoreSchema.validateParameters(workflow, params, log)
}
// Print parameter summary log to screen
log.info paramsSummaryLog(workflow, params, log)
// Check that a -profile or Nextflow config has been provided to run the pipeline
NfcoreTemplate.checkConfigProvided(workflow, log)
@ -90,4 +90,5 @@ class WorkflowMain {
}
return null
}
}