UNPKG

hic-straw

Version:

Utilities for reading .files (contact matrix files)

15 lines (11 loc) 254 B
class ContactRecord { constructor(bin1, bin2, counts) { this.bin1 = bin1; this.bin2 = bin2; this.counts = counts; }; getKey() { return "" + this.bin1 + "_" + this.bin2; } } export default ContactRecord;