alignment_table = collate(json.loads(json_input), output="json", layout="vertical", segmentation=False, near_match=True)
produces the exact same output as
alignment_table = collate(json.loads(json_input), output="json", layout="horizontal", segmentation=False, near_match=True)
or
alignment_table = collate(json.loads(json_input), output="json", segmentation=False, near_match=True)
But should produce output equivalent to the old java interface.