-
Notifications
You must be signed in to change notification settings - Fork 6
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 Summer School Data Organization Code #56
Merged
Merged
Commits on May 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fc81cbf - Browse repository at this point
Copy the full SHA fc81cbfView commit details
Commits on May 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f6e2c13 - Browse repository at this point
Copy the full SHA f6e2c13View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6269dbb - Browse repository at this point
Copy the full SHA 6269dbbView commit details
Commits on May 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fd744cd - Browse repository at this point
Copy the full SHA fd744cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for f720bea - Browse repository at this point
Copy the full SHA f720beaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13155ea - Browse repository at this point
Copy the full SHA 13155eaView commit details
Commits on May 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e1fbdf0 - Browse repository at this point
Copy the full SHA e1fbdf0View commit details
Commits on Jun 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4c211a9 - Browse repository at this point
Copy the full SHA 4c211a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d62364a - Browse repository at this point
Copy the full SHA d62364aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9e2202 - Browse repository at this point
Copy the full SHA c9e2202View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0904d59 - Browse repository at this point
Copy the full SHA 0904d59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25a2928 - Browse repository at this point
Copy the full SHA 25a2928View commit details -
Merge branch 'alistair/bids_format' of https://github.com/sensein/b2a…
…iprep into alistair/bids_format
Configuration menu - View commit details
-
Copy full SHA for 3139365 - Browse repository at this point
Copy the full SHA 3139365View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7f71bc - Browse repository at this point
Copy the full SHA c7f71bcView commit details
Commits on Jun 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c1cef79 - Browse repository at this point
Copy the full SHA c1cef79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 474b20a - Browse repository at this point
Copy the full SHA 474b20aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 22f8775 - Browse repository at this point
Copy the full SHA 22f8775View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb429b6 - Browse repository at this point
Copy the full SHA cb429b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9a0736 - Browse repository at this point
Copy the full SHA d9a0736View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1325e59 - Browse repository at this point
Copy the full SHA 1325e59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d1c428 - Browse repository at this point
Copy the full SHA 9d1c428View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35dff68 - Browse repository at this point
Copy the full SHA 35dff68View commit details -
Merge branch 'alistair/bids_format' of https://github.com/sensein/b2a…
…iprep into alistair/bids_format
Configuration menu - View commit details
-
Copy full SHA for 5db64d2 - Browse repository at this point
Copy the full SHA 5db64d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5342891 - Browse repository at this point
Copy the full SHA 5342891View commit details -
Configuration menu - View commit details
-
Copy full SHA for acd422c - Browse repository at this point
Copy the full SHA acd422cView commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9891d3f - Browse repository at this point
Copy the full SHA 9891d3fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6641fe2 - Browse repository at this point
Copy the full SHA 6641fe2View commit details
Commits on Jun 7, 2024
-
Get pydra optimized feature extraction working
@pytest.fixture def mock_file_system(): with mock.patch('os.listdir') as mock_listdir, \ mock.patch('os.path.isdir') as mock_isdir, \ mock.patch('os.path.exists') as mock_exists, \ mock.patch('os.path.isfile') as mock_isfile: # Mock the directory structure def listdir_side_effect(path): if path == 'mock_bids_dir_path': return ['sub-1'] elif path == 'mock_bids_dir_path/sub-1': return ['ses-1', 'ses-2'] elif path == 'mock_bids_dir_path/sub-1/ses-1': return [] elif path == 'mock_bids_dir_path/sub-1/ses-2': return ['audio-1.wav', 'otherfile.txt'] return [] def isdir_side_effect(path): return path in [ 'mock_bids_dir_path', 'mock_bids_dir_path/sub-1', 'mock_bids_dir_path/sub-1/ses-1', 'mock_bids_dir_path/sub-1/ses-2' ] def exists_side_effect(path): return path in [ 'mock_bids_dir_path', 'mock_bids_dir_path/sub-1', 'mock_bids_dir_path/sub-1/ses-1', 'mock_bids_dir_path/sub-1/ses-2', 'mock_bids_dir_path/sub-1/ses-2/audio-1.wav', 'mock_bids_dir_path/sub-1/ses-2/otherfile.txt' ] def isfile_side_effect(path): return path in [ 'mock_bids_dir_path/sub-1/ses-2/audio-1.wav', 'mock_bids_dir_path/sub-1/ses-2/otherfile.txt' ] mock_listdir.side_effect = listdir_side_effect mock_isdir.side_effect = isdir_side_effect mock_exists.side_effect = exists_side_effect mock_isfile.side_effect = isfile_side_effect yield
Configuration menu - View commit details
-
Copy full SHA for b847bac - Browse repository at this point
Copy the full SHA b847bacView commit details -
Configuration menu - View commit details
-
Copy full SHA for e31b068 - Browse repository at this point
Copy the full SHA e31b068View commit details
Commits on Jun 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 906cd1b - Browse repository at this point
Copy the full SHA 906cd1bView commit details
Commits on Jun 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2c8140d - Browse repository at this point
Copy the full SHA 2c8140dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7045385 - Browse repository at this point
Copy the full SHA 7045385View commit details
Commits on Jun 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 95b1bd2 - Browse repository at this point
Copy the full SHA 95b1bd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 497487d - Browse repository at this point
Copy the full SHA 497487dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1797300 - Browse repository at this point
Copy the full SHA 1797300View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb35fb2 - Browse repository at this point
Copy the full SHA cb35fb2View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.