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

Apply review suggestions

This commit is contained in:
sofstam 2022-12-01 13:42:21 +01:00
parent 1965ade961
commit 38a818fd17
4 changed files with 25 additions and 23 deletions

View file

@ -448,9 +448,9 @@ process {
withName: MOTUS_PROFILE {
ext.args = {
[
params.motus_use_ncbi_ids ? "-p" : "",
params.motus_output_type ? "-c" : "",
params.motus_save_mgcreadcounts ? "-M ${task.ext.prefix}.mgc" : ""
params.motus_remove_ncbi_ids ? "" : "-p",
params.motus_use_relative_abundance ? "" : "-c",
params.motus_save_mgc_read_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}" }

View file

@ -39,8 +39,8 @@ params {
run_centrifuge = false
run_diamond = false
run_motus = true
motus_save_mgcreadcounts = true
motus_use_ncbi_ids = true
motus_output_type = true
motus_save_mgc_read_counts = true
motus_remove_ncbi_ids = true
motus_use_relative_abundance = true
run_profile_standardisation = true
}

View file

@ -139,10 +139,10 @@ params {
diamond_save_reads = false // this will override default diamond output format so no taxonomic profile is generated! added directly to module in profiling.nf
// mOTUs
run_motus = false
motus_output_type = false
motus_use_ncbi_ids = false
motus_save_mgcreadcounts = false
run_motus = false
motus_use_relative_abundance = false
motus_remove_ncbi_ids = false
motus_save_mgc_read_counts = false
// krona
run_krona = false

View file

@ -472,18 +472,6 @@
"type": "boolean",
"fa_icon": "fas fa-toggle-on",
"description": "Turn on profiling with mOTUs. Requires database to be present CSV file passed to --databases"
},
"motus_use_ncbi_ids": {
"type": "boolean",
"description": "Turn on printing ncbi taxonomic ids."
},
"motus_save_mgcreadcounts": {
"type": "boolean",
"description": "Turn on saving the mgc reads count to a separate file."
},
"motus_output_type": {
"type": "boolean",
"description": "Turn on printing result as counts instead of relative abundances."
}
},
"fa_icon": "fas fa-align-center"
@ -783,5 +771,19 @@
{
"$ref": "#/definitions/reference_genome_options"
}
]
],
"properties": {
"motus_use_relative_abundance": {
"type": "string",
"default": "false"
},
"motus_remove_ncbi_ids": {
"type": "string",
"default": "false"
},
"motus_save_mgc_read_counts": {
"type": "string",
"default": "false"
}
}
}