Skip to content

Commit

Permalink
Implemented the issue: lastal params
Browse files Browse the repository at this point in the history
close #31
  • Loading branch information
U13bs1125 committed May 23, 2024
1 parent c21e3e2 commit 34266b3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ params {
lastal_args = 'C2'
lastal_extr_args = 'D1e9'
last_split_mismap = '1e-05'
lastal_params = null

// Schema validation default options
validationFailUnrecognisedParams = false
Expand All @@ -75,7 +76,7 @@ params {
validationShowHiddenParams = false
validate_params = true

}
i}

// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
Expand Down
20 changes: 11 additions & 9 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
}
}
},
"skip_dotplot": {
"title": "skip dotplot",
"dotplot_params": {
"title": "dotplot params",
"type": "object",
"description": "Use --skip_dotplot_m2m, --skip_dotplot_m2o, --skip_dotplot_o2o --skip_dotplot_o2m to skip the production of the dot plots that can be computationally expensive and visually uninformative on large genomes with shared repeats.",
"default": "",
Expand All @@ -66,6 +66,9 @@
"skip_dotplot_m2m": {
"type": "boolean",
"description": "To skip the dot plots representation of many to many alignment points"
},
"dotplot_options": {
"type": "string"
}
},
"help_text": "Use --skip_dotplot_m2m, --skip_dotplot_m2o, --skip_dotplot_o2o --skip_dotplot_o2m to skip the production of the dot plots that can be computationally expensive and visually uninformative on large genomes with shared repeats."
Expand Down Expand Up @@ -378,6 +381,10 @@
"type": "string",
"default": 1e-05,
"description": "By default, last-split runs with -m1e-5 to omit alignments with mismap probability > 10\u22125, but this can be overriden with the --last_split_mismap option."
},
"lastal_params": {
"type": "string",
"description": "--lastal_params: path to a file containing alignment parameters computed by last-train or a scoring matrix. If this option is not used, the pipeline will run last-train for each query."
}
}
}
Expand All @@ -390,7 +397,7 @@
"$ref": "#/definitions/others_1st_batch"
},
{
"$ref": "#/definitions/skip_dotplot"
"$ref": "#/definitions/dotplot_params"
},
{
"$ref": "#/definitions/input_output_options"
Expand All @@ -410,10 +417,5 @@
{
"$ref": "#/definitions/new_group_1"
}
],
"properties": {
"dotplot_options": {
"type": "string"
}
}
]
}

0 comments on commit 34266b3

Please sign in to comment.