Skip to content

Commit

Permalink
fix math
Browse files Browse the repository at this point in the history
  • Loading branch information
lskatz committed Apr 29, 2024
1 parent 14d9afb commit d6950b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
tail -n +2 Kalamari/src/chromosomes.tsv >> in.tsv
total_lines=$(wc -l < in.tsv)
start_line=$(( $runner_id * $total_lines / 20 ))
start_line=$(( $runner_id * $total_lines / 20 + 1 ))
end_line=$(( ($runner_id + 1) * $total_lines / 20 -1 ))
echo "($runner_id) start_line: $start_line"
echo "($runner_id) end_line: $end_line"
Expand Down

0 comments on commit d6950b0

Please sign in to comment.