133134135136137138139140141142143
public int getReferenceLength(String cigarString) { // Use htsjdk class for now TextCigarCodec codec = new TextCigarCodec(); Cigar cigar = codec.decode(cigarString); return cigar.getReferenceLength(); } /* "id": "",