Skip to content

Commit 3ab3b3a

Browse files
authored
Merge pull request #611 from macs3-project/fix/macs3/signal_text
fix labels for signals
2 parents c02ee68 + 6aca443 commit 3ab3b3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MACS3/Commands/hmmratac_cmd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,13 @@ def run( args ):
160160
digested_atac_signals[ 0 ].write_bedGraph(fhd, "short","short")
161161
fhd.close()
162162
fhd = open(mono_bdgfile,"w")
163-
digested_atac_signals[ 0 ].write_bedGraph(fhd, "mono","mono")
163+
digested_atac_signals[ 1 ].write_bedGraph(fhd, "mono","mono")
164164
fhd.close()
165165
fhd = open(di_bdgfile,"w")
166-
digested_atac_signals[ 0 ].write_bedGraph(fhd, "di","di")
166+
digested_atac_signals[ 2 ].write_bedGraph(fhd, "di","di")
167167
fhd.close()
168168
fhd = open(tri_bdgfile,"w")
169-
digested_atac_signals[ 0 ].write_bedGraph(fhd, "tri","tri")
169+
digested_atac_signals[ 3 ].write_bedGraph(fhd, "tri","tri")
170170
fhd.close()
171171

172172
minlen = int(petrack.average_template_length)

0 commit comments

Comments
 (0)