Skip to content
Snippets Groups Projects
Commit a194a5b9 authored by STEVAN Antoine's avatar STEVAN Antoine :crab: Committed by STEVAN Antoine
Browse files

use all x values to compute the min and max

parent 4212bb72
No related branches found
No related tags found
1 merge request!120use all x values to compute x limits in `inbreeding plot`
Pipeline #5288 passed
......@@ -98,8 +98,8 @@ export def main [
| reject strategy
| save --force /tmp/graphs.json
let x_min = open /tmp/graphs.json | get points.0.x | math min
let x_max = open /tmp/graphs.json | get points.0.x | math max
let x_min = open /tmp/graphs.json | get points | flatten | get x | math min
let x_max = open /tmp/graphs.json | get points | flatten | get x | math max
let args = [
--json-data-file /tmp/graphs.json
......
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