1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 05:22:04 +00:00

Include NCBI_id, read counts and mgc arguments in motus

This commit is contained in:
sofstam 2022-11-29 11:07:29 +01:00
parent f8b769a8f0
commit 49af33f68e
3 changed files with 7 additions and 0 deletions

View file

@ -446,6 +446,7 @@ process {
}
withName: MOTUS_PROFILE {
ext.args = { [ params.save_ncbi_id ? "-p" : "", params.save_read_counts ? "-c" : "", params.save_mgc_counts ? "-M ${task.ext.prefix}.mgc" : "" ].join(',').replaceAll(','," ") }
ext.prefix = params.perform_runmerging ? { "${meta.id}-${meta.db_name}" } : { "${meta.id}-${meta.run_accession}-${meta.db_name}" }
publishDir = [
path: { "${params.outdir}/motus/${meta.db_name}/" },

View file

@ -39,5 +39,8 @@ params {
run_centrifuge = false
run_diamond = false
run_motus = true
save_mgc_counts = true
save_ncbi_id = true
save_read_counts = true
run_profile_standardisation = true
}

View file

@ -140,6 +140,9 @@ params {
// mOTUs
run_motus = false
save_mgc_counts = false
save_ncbi_id = false
save_read_counts = false
// krona
run_krona = false