Skip to content

Commit

Permalink
Fix #866 (#871)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 authored Sep 9, 2019
1 parent 832a22a commit 2560d13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* The Y-axis labels should once again appear in both plotHeatmap and plotProfile (issue #844). This was related to the previous point.
* Testing is no longer performed with python 2.7, which will reach end of life in a couple months.
* Various documentation updates (issues #868, #867 and #851).
* Increased support for BED files with track header lines (issue #866).

3.3.0

Expand Down
2 changes: 2 additions & 0 deletions deeptools/computeMatrixOperations.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,8 @@ def sortMatrix(hm, regionsFileName, transcriptID, transcript_id_designator, verb
if not labelColumn:
labelColumn = dti.getLabel(line)
line = dti.getNext(fp)
while line.startswith("track "):
line = dti.getNext(fp)

# Find the label column
subtract = 0
Expand Down

0 comments on commit 2560d13

Please sign in to comment.