Skip to content

Commit

Permalink
Update help for --dynamic_filter
Browse files Browse the repository at this point in the history
  • Loading branch information
fbdtemme committed Dec 10, 2024
1 parent 37cc14d commit ed7e5a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ params {
multiplet_recovery = true
min_size = 2
max_size = 100000
dynamic_filtering = null
dynamic_filter = null
compute_polarization = true
use_full_bipartite = true
colocalization_min_region_count = 0
Expand Down
2 changes: 1 addition & 1 deletion conf/test_panel_v2.config
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ params {
multiplet_recovery = true
min_size = 2
max_size = 100000
dynamic_filtering = nu
dynamic_filter = null
compute_polarization = true
use_full_bipartite = true
colocalization_min_region_count = 0
Expand Down
3 changes: 2 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@
"type": "integer"
},
"dynamic_filter": {
"description": " Enable the estimation of dynamic size filters using a log-rank approach both: estimate both min and max size, min: estimate min size (--min-size), max: estimate max size (--max-size)",
"description": "Enable the estimation of dynamic size filters using a log-rank approach.",
"help_text": "Following options are available:\n- both: estimates both minimum and maximum component size\n- min: estimates the minimum component size (or uses {MINIMUM_N_EDGES_CELL_SIZE} edges, whichever is smallest)\n- max: estimates the maximum component size.\n\nNote that this cannot be set at the same time as `--min-size` or `--max-size`.",
"type": "string",
"enum": ["both", "min", "max"],
"default": "min"
Expand Down

0 comments on commit ed7e5a6

Please sign in to comment.