Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## dev - xxxx-xx-xx

### Changed

- Set default pna_graph_component_size_min_threshold to 8000 instead of null (i.e. automatic).

### Removed

- Support for MPX in the pipeline
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ params {
pna_graph_initial_stage_max_edges_to_remove_relative = null
pna_graph_refinement_stage_max_edges_to_remove_relative = null
pna_graph_graph_min_component_size_to_prune = 100
pna_graph_component_size_min_threshold = null
pna_graph_component_size_min_threshold = 8000

// PNA denoise
pna_denoise_run_one_core_graph_denoising = true
Expand Down
3 changes: 2 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@
"pna_graph_component_size_min_threshold": {
"type": "number",
"minimum": 1,
"description": "Components with fewer nodes than this will be filtered from the output data. This is typically not needed. Setting this will disable the automatic size filtering."
"default": 8000,
"description": "Components with fewer nodes than this will be filtered from the output data. Set to null to enable automatic size filtering based on the data."
}
}
},
Expand Down
Loading