lifeomic / phc-sdk-py

The phc-sdk-py is a developer kit for interfacing with the PHC API on Python 3.8 and above.
https://lifeomic.github.io/phc-sdk-py/index.html
MIT License
1 stars 2 forks source link

Supports providing patient_id in array type #204

Open shawnzhu opened 1 year ago

shawnzhu commented 1 year ago

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'],
,)