Now
When using GenomicShortVariant#get_data_frame(), it could provides patient_id in string type only:
df = get_data_frame(
...,
patient_id = 'UUID_1,UUID2'
,)
Expected result
It could support providing patient ids in array type as well:
df = get_data_frame(
...,
patient_id = ['UUID_1', 'UUID_2'],
,)