Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
akdemirlab committed May 14, 2015
1 parent 118f9a3 commit 3e377c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HiCPlotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ def HiCplotter(files=[],names=[],resolution=100000,chromosome='',output='',histo
comps2=array(y_comps)
ax3.fill_between(x_comps, comps2,0, color='gray', interpolate=True)
if ymin < 0:
with np.errstate(all='ignore'):ax3.fill_between(x_comps, comps2,0, comps2>0, color='black', interpolate=True)
with np.errstate(all='ignore'):ax3.fill_between(x_comps, comps2, 0, where=comps2<0, color='gray', interpolate=True)
with np.errstate(all='ignore'):ax3.fill_between(x_comps, comps2,0, comps2>0, color='gray', interpolate=True)
with np.errstate(all='ignore'):ax3.fill_between(x_comps, comps2, 0, where=comps2<0, color='black', interpolate=True)
x_comps=[];x_comps2=[];y_comps=[];colors==[];
if plotTadDomains:
ax3.set_xticks(tricks, minor=True)
Expand Down

0 comments on commit 3e377c5

Please sign in to comment.