Skip to content

Commit

Permalink
Merge pull request #105 from StefanoCretti/master
Browse files Browse the repository at this point in the history
Bug fix in matrix-style tracks height computation and fixed CI
  • Loading branch information
Nanguage authored Feb 25, 2025
2 parents 2628295 + c50d509 commit 1e72791
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
run: |
export PATH=$CONDA/bin:$PATH
$CONDA/bin/conda install --yes pytest
$CONDA/bin/conda install -c conda-forge sqlite
$CONDA/bin/conda install -c conda-forge --yes pytest-tornasync
$CONDA/bin/pytest --cov=./ tests/ --cov-report=xml
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true

2 changes: 1 addition & 1 deletion coolbox/core/track/hicmat/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def get_track_height(self, frame_width, *args):
else:
height = frame_width * 0.5
else:
height = frame_width * 0.8
height = frame_width

if (
'depth_ratio' in self.properties
Expand Down

0 comments on commit 1e72791

Please sign in to comment.