-
Notifications
You must be signed in to change notification settings - Fork 260
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
WIP: CIFTI2 spec reader and writer #249
Conversation
satra
commented
Aug 1, 2014
- CIFTI2 reader
- CIFTI2 writer
- tests
- integration with nifti2
@matthew-brett - a quick pass at reading a cifti2 spec based on the gifti reader. i'll try to finish this up over the weekend. |
@matthew-brett - have you read the cifti2 spec? one question is whether we want to create cifti data type specific models (dconn, dtseries, dscalar, etc.,.). if this is the case, we will need to focus on these data types and how the cifti extension is manipulated based on the data type. (unfortunately that will require a fair bit of work). on the other hand, if we simply provide access to the cifti metadata and allow people to construct a cifti extension, that's less work. |
I haven't read the spec, no. In ignorance, it sounds like an API to construct the relevant information, with a good test suite, would be the best first step. Does that seem reasonable? I got an email of a comment on this thread with a question about the nifti2 data shape being out of spec - did you edit that out? |
@matthew-brett - the current implementation provides that simple api, i'll finish off the test suite. but this really should be redone with a better api. yup edited that out - was an erroneous question. |
nibabel/cifti/cifti.py
Outdated
seriesExponent = int | ||
seriesStart = float | ||
seriesStep = float | ||
seriesUnit = str |
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.
@matthew-brett - since i initially built this off the gifti classes i followed the standards there. i usually don't declare class variables up front. is this something that nibabel follows or intended to help docs/py3k?
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.
No - I don't know where that habit came from, but I'm with you, and I don't declare variables up front. I think you'll see very few of the other nibabel classes use this.
@matthew-brett - i'm going to now ask for comments/feedback on both the nipy and hcp mailings lists. completed thus far:
|
nibabel/cifti/cifti.py
Outdated
def __init__(self, nvpair = None): | ||
self.data = [] | ||
if not nvpair is None: | ||
if isinstance(nvpair, list): |
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.
Has to be list rather than - say - tuple?
nibabel/cifti/cifti.py
Outdated
if vertices is None: | ||
vertices = [] | ||
self.vertices = vertices | ||
self.numVA = len(vertices) |
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.
numVa as property? Can you avoid non-pep-8 name? num_va?
The appveyor tests seem to fail due to a testing implementation problem. Is that the last thing we need to fix this? |
☔ The latest upstream changes (presumably #508) made this pull request unmergeable. Please resolve the merge conflicts. |
@matthew-brett - any ideas here? it seems that appveyor is seeing some conflict with cleaning up the temporary directory for the various cifti write-read-assert tests |
Windows needs to have all objects that carry file references to be deleted, before deleting the referenced files.
Satra - see satra#17 - Windows needs all objects deleted that carry open file objects, before it can delete the referenced files. There seem to be quite a few pep8 problems in the test_new_cifti2.py file. |
BF: delete images to allow Windows to delete dir
thanks @matthew-brett - i'll do a pep8 sweep through that file. |
Looks finally ready to merge? Or are there PEP8 failures that are being suppressed by |
@matthew-brett - pep8 for |
Sorry to be slow to get back to you - traveling and being sick... I won't have time to go through this guy in detail now, so what I propose to do is merge this as is, and the do some pull requests with proposed edits and refactorings. That means that the interface may change after it gets merged. Is this OK with everyone? |
I am ok with this |
@matthew-brett - ok with me. |
Sorry for the delay - thanks for all the work. In it goes. I'll try to get to some refactoring this week. |
@matthew-brett - thank you!! |
Yay! |
@matthew-brett I'll be happy to review your PRs. Since so many people are depending on Satra's branch, I think it'd be good to aim for a release soon so they can depend on a stable version. |
@effigies I think that now that this has been merged we can start PRs to build convenience functions for navigating the data and creating CIFTI2 images |
@demianw - corresponding to the tests that start here written by @MichielCottaar : https://github.com/nipy/nibabel/blob/master/nibabel/cifti2/tests/test_new_cifti2.py#L206 there are few of these convenience functions already at the top of the file, which can be extracted and added to the library. |