pybids icon indicating copy to clipboard operation
pybids copied to clipboard

Python tools for querying and manipulating BIDS datasets.

Results 120 pybids issues
Sort by recently updated
recently updated
newest added

Consider a variable like response time, that only has meaning if a response is made. If it's not made, there is nothing to model. onset | duration | trial_type |...

variables

I'd like to filter the output of `get_associations()` by kind. Unfortunately, I fail to find any documentation on the association kinds. There is some info in #431 but it's not...

wontfix

In a scenario where subjects have 1-2 runs (with those w/ only 1 run having no run labels), `Analysis.setup()` crashes when the statsmodel doesn't define `Run` under `Input`: ``` ERROR:nipype.workflow:could...

bug
statsmodels

To address loading incompatible saved dbs from previous various we could: - Throw a warning when loading a db from a previous pybids version - Catch SQL exceptions and suggest...

wontfix
layout

Apparently SQLAlchemy is undergoing a massive refactor for version 2.0, and is using 1.4 as a stepping stone. The idea seems to be break some things, let people fix them...

wontfix
layout

Currently, if I want to have an analysis run for subject 1, run 1 and subject 2 run 2, it's not possible as the following specified subject 1+2 runs 1+2,...

statsmodels

Currently, the `config` argument passed at `BIDSLayout` initialization isn't passed through to `add_derivatives()` when there are derivatives present; instead, `None` is passed. The ostensible reason for this is so that...

bug
layout

Indexing associations between files (e.g., identifying `*_events.tsv` that inform a `*.nii.gz` BOLD run) is quite expensive and not useful to most people. We should add an initialization flag that disables...

enhancement
layout

Suppose I have a BIDSLayout. I then do some processing and generate new files, which I'd like to add back into the layout so later steps know they are there....

enhancement
wontfix
low priority

``` In [1]: from bids.layout import BIDSLayout In [2]: layout = BIDSLayout('/datasets/raw/SherlockMerlin/', derivatives=True) In [3]: layout.get_collections(subject='19', task='MerlinMovie', level='run') ``` Throws the following error: ``` /usr/local/lib/python3.6/site-packages/bids/layout/layout.py in get_collections(self, level, types, variables,...

bug
variables