Skip to content
Snippets Groups Projects
Commit 861805c7 authored by nservant's avatar nservant
Browse files

[BUG] fix bug in --bin-size parameter #85

parent 8110985a
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Fixed` ### `Fixed`
* Fix bug in `--bin_size` parameter (#85)
* `min_mapq` is ignored if `--keep_multi` is used * `min_mapq` is ignored if `--keep_multi` is used
### Deprecated ### Deprecated
......
...@@ -228,7 +228,7 @@ else { ...@@ -228,7 +228,7 @@ else {
} }
// Resolutions for contact maps // Resolutions for contact maps
map_res = Channel.from( params.bin_size.tokenize(',') ) map_res = Channel.from( params.bin_size.toString() ).splitCsv().flatten()
/********************************************************** /**********************************************************
* SET UP LOGS * SET UP LOGS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment