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

Empty acq_time results in empty cell not 'n/a' #390

Merged
merged 3 commits into from
Oct 29, 2019
Merged

Commits on Oct 28, 2019

  1. Empty acq_time results in empty cell not 'n/a'

    BIDS validator gives me this error for acq_time: `[ERR] Empty cell in TSV file detected: The proper way of labeling missing values is "n/a"`
    
    This is because `str(None)` in Python gives 'None' which has True boolean value. Fortunately, the fix is simple.
    Aksoo authored Oct 28, 2019
    Configuration menu
    Copy the full SHA
    4895d4b View commit details
    Browse the repository at this point in the history
  2. Use empty string not None

    for cases where the field exists but is empty
    Aksoo authored Oct 28, 2019
    Configuration menu
    Copy the full SHA
    067c99c View commit details
    Browse the repository at this point in the history
  3. need str typecast

    ok...
    Aksoo authored Oct 28, 2019
    Configuration menu
    Copy the full SHA
    8f0f767 View commit details
    Browse the repository at this point in the history