We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd8066 commit c416e9aCopy full SHA for c416e9a
hicexplorer/hicCorrectMatrix.py
@@ -667,7 +667,7 @@ def main(args=None):
667
with open(args.filteredBed, 'w') as f:
668
for outlier_region in set(outlier_regions):
669
interval = ma.cut_intervals[outlier_region]
670
- f.write('\t'.join(str(x) for x in interval) + '\n')
+ f.write(f"{interval[0]}\t{interval[1]}\t{interval[2]}\t.\t{interval[3]}\t.\n")
671
# mask filtered regions
672
ma.maskBins(outlier_regions)
673
total_filtered_out = set(outlier_regions)
0 commit comments