-
Notifications
You must be signed in to change notification settings - Fork 33
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
add "GeneratedBy"s in dataset_description.json
for BIDS 1.4+ compliance
#1019
Conversation
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.
We had this in a previous PR, that was eventually closed: #870. I think that we were waiting for bids-standard/pybids#864 to get merged in pybids first, but if this now works without that, I would be OK making this change now.
"Version": pyafq_version}} | ||
"Version": pyafq_version}, | ||
"GeneratedBy": [{"Name": op.basename(self.afq_path), | ||
"Version": pyafq_version}]} |
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.
Can you really have both of these side-by-side?
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.
I left the PipelineDescription for compatibility. I think it's just going to be extra and should be deleted in the near future.
"Version": pyafq_version}, | ||
"GeneratedBy": [{"Name": op.basename(self.afq_path), | ||
"Version": pyafq_version}]} |
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.
Also, while we're here, could we add something like:
"Version": pyafq_version}, | |
"GeneratedBy": [{"Name": op.basename(self.afq_path), | |
"Version": pyafq_version}]} | |
"Version": pyafq_version}, | |
"GeneratedBy": [{"Name": op.basename(self.afq_path), | |
"Version": pyafq_version}], | |
"HowToAcknowledge": "Please cite this paper: https://apertureneuro.org/article/77465-evaluating-the-reliability-of-human-brain-white-matter-tractometry"} |
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 like this is passing the CI tests, so I will go ahead and merge it.
Fixes #1018