-
Notifications
You must be signed in to change notification settings - Fork 4
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
Robokop v5.0 #92
Robokop v5.0 #92
Conversation
YaphetKG
commented
Nov 9, 2023
- New Robokop Graph
- CDE link fix
collection_action to action
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All this looks fine, but I'm going to have to bring this over into the DugPipeline class at some point. What does the addition of line 391 do here? I just want to make sure I'm clear.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
total_items
is one of the keys that is returned in the response. it looks something like
{ "total_items": 100
"dbgap" : {"elements" : [...]}
"cde" : {"elements" : [...]}
}
When doing the reduce on line 393 this causes problems since we are trying to gather element IDs and the total items key is an outlier
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine to me!