-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tried to use tutorial from the Pypy page and came up with error #92
Comments
Hi @oohtmeel1 , thank you reporting the error in our README file! I see that Here are a few tutorials that @fedorov has put together to learn more about idc-index. I'll update the README.md file ASAP. |
Thank you for reporting the issue @oohtmeel1! |
No problem. I like the IDC package. I think it is super useful.
Thank you for fixing the readme.
…On Sat, Jun 1, 2024 at 5:42 PM Andrey Fedorov ***@***.***> wrote:
Thank you for reporting the issue @oohtmeel1
<https://github.com/oohtmeel1>!
—
Reply to this email directly, view it on GitHub
<#92 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A3O4F2CES6HSKNLHLBWZO7LZFI54LAVCNFSM6AAAAABIRSK2ACVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCNBTGYYDAMRTGU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
We appreciate your feedback @oohtmeel1! Please feel free to let us know of any other features you wish were present in idc-index. |
Two weeks ago I tried to use the IDC package and it worked well.
But today I went to use it and obtained this error :
TypeError: seriesInstanceUID must be a string or list of strings
So I tried to use one of the example pieces of code that I know should work.
And that was broken too. (Same error)
I tried to use
from idc_index import index
client = index.IDCClient()
query = """
SELECT
SeriesInstanceUID
FROM
index
WHERE
Modality = 'MR'
"""
selection_df = client.sql_query(query)
client.download_from_selection(
seriesInstanceUID=selection_df["SeriesInstanceUID"].values[:10], downloadDir="."
)
Not sure if it is just me or not.
The text was updated successfully, but these errors were encountered: