Parse_locus() over multiple regions using GRCh38

In 0.2.15 or later, doing the following:

intervals = [hl.parse_locus(x, reference_genome='GRCh38') for x in ['4:144585304', '15:78575140']]
mt_hits = mt.filter_rows(hl.literal(intervals).contains(mt.locus))

will have the same performance as filter_intervals, but is much easier to use. See here: