Skip to content
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

Merged
merged 189 commits into from
Mar 7, 2017
Merged

Conversation

satra
Copy link
Member

@satra satra commented Aug 1, 2014

  • CIFTI2 reader
  • CIFTI2 writer
  • tests
  • integration with nifti2

@satra
Copy link
Member Author

satra commented Aug 1, 2014

@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.

@coveralls
Copy link

Coverage Status

Coverage decreased (-2.44%) when pulling e80b4bc on satra:enh/cifti2 into f8eb71d on nipy:master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-2.97%) when pulling 2262b73 on satra:enh/cifti2 into f8eb71d on nipy:master.

@satra
Copy link
Member Author

satra commented Aug 3, 2014

@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.

@matthew-brett
Copy link
Member

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?

@satra
Copy link
Member Author

satra commented Aug 3, 2014

@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.

seriesExponent = int
seriesStart = float
seriesStep = float
seriesUnit = str
Copy link
Member Author

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?

Copy link
Member

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.

@satra
Copy link
Member Author

satra commented Aug 4, 2014

@matthew-brett - i'm going to now ask for comments/feedback on both the nipy and hcp mailings lists.

completed thus far:

  • basic io (not much validation or checking - for example, all the asserts should really raise exceptions)
  • basic tests (can i read, write, and read back what i write)
  • base CiftiImage class
    • we should be deriving datatype specific classes from this and adding api to those specific data types (scalars, timeseries, fibers, etc.,.)

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.04%) when pulling 8b0feb6 on satra:enh/cifti2 into f8eb71d on nipy:master.

def __init__(self, nvpair = None):
self.data = []
if not nvpair is None:
if isinstance(nvpair, list):
Copy link
Member

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?

if vertices is None:
vertices = []
self.vertices = vertices
self.numVA = len(vertices)
Copy link
Member

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?

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 96.138% when pulling 2fa22d1 on satra:enh/cifti2 into b8017c9 on nipy:master.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 96.138% when pulling 2fa22d1 on satra:enh/cifti2 into b8017c9 on nipy:master.

@demianw
Copy link
Contributor

demianw commented Feb 8, 2017

The appveyor tests seem to fail due to a testing implementation problem. Is that the last thing we need to fix this?

@nibotmi
Copy link
Contributor

nibotmi commented Feb 13, 2017

☔ The latest upstream changes (presumably #508) made this pull request unmergeable. Please resolve the merge conflicts.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 96.141% when pulling 72fcdc9 on satra:enh/cifti2 into 7044ee4 on nipy:master.

@satra
Copy link
Member Author

satra commented Feb 15, 2017

@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.
@matthew-brett
Copy link
Member

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
@satra
Copy link
Member Author

satra commented Feb 16, 2017

thanks @matthew-brett - i'll do a pep8 sweep through that file.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 96.151% when pulling ab1801f on satra:enh/cifti2 into 7044ee4 on nipy:master.

@effigies
Copy link
Member

Looks finally ready to merge? Or are there PEP8 failures that are being suppressed by tox.ini that need addressing? (I've never been entirely clear on the style rules for tests.)

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 96.151% when pulling e4f3176 on satra:enh/cifti2 into 7044ee4 on nipy:master.

@satra
Copy link
Member Author

satra commented Feb 17, 2017

@matthew-brett - pep8 for test_new_cifti2 done. is there anything else that needs to happen before merge?

@coveralls
Copy link

coveralls commented Feb 17, 2017

Coverage Status

Coverage decreased (-0.007%) to 96.005% when pulling 9e1de24 on satra:enh/cifti2 into 7044ee4 on nipy:master.

@matthew-brett
Copy link
Member

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?

@demianw
Copy link
Contributor

demianw commented Feb 26, 2017

I am ok with this

@satra
Copy link
Member Author

satra commented Feb 26, 2017

@matthew-brett - ok with me.

@matthew-brett
Copy link
Member

Sorry for the delay - thanks for all the work. In it goes. I'll try to get to some refactoring this week.

@satra
Copy link
Member Author

satra commented Mar 7, 2017

@matthew-brett - thank you!!

@demianw
Copy link
Contributor

demianw commented Mar 7, 2017

Yay!

@effigies
Copy link
Member

effigies commented Mar 7, 2017

@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.

@demianw
Copy link
Contributor

demianw commented Mar 7, 2017

@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

@satra
Copy link
Member Author

satra commented Mar 7, 2017

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants