Skip to content

Commit 1e72791

Browse files
authored
Merge pull request #105 from StefanoCretti/master
Bug fix in matrix-style tracks height computation and fixed CI
2 parents 2628295 + c50d509 commit 1e72791

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
run: |
2929
export PATH=$CONDA/bin:$PATH
3030
$CONDA/bin/conda install --yes pytest
31+
$CONDA/bin/conda install -c conda-forge sqlite
3132
$CONDA/bin/conda install -c conda-forge --yes pytest-tornasync
3233
$CONDA/bin/pytest --cov=./ tests/ --cov-report=xml
3334
- name: "Upload coverage to Codecov"
34-
uses: codecov/codecov-action@v1
35+
uses: codecov/codecov-action@v5
3536
with:
3637
fail_ci_if_error: true
3738

coolbox/core/track/hicmat/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def get_track_height(self, frame_width, *args):
187187
else:
188188
height = frame_width * 0.5
189189
else:
190-
height = frame_width * 0.8
190+
height = frame_width
191191

192192
if (
193193
'depth_ratio' in self.properties

0 commit comments

Comments
 (0)