-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #259 from eurunuela/enh/remove_tests
Remove redundant integration tests
- Loading branch information
Showing
2 changed files
with
151 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import fnmatch | ||
|
||
|
||
def heur(physinfo): | ||
""" | ||
Set of if .. elif statements to fill BIDS names. | ||
It requires the user (you!) to adjust it accordingly! | ||
It needs an ``if`` or ``elif`` statement for each file that | ||
needs to be processed. | ||
The statement will test if the ``physinfo``: | ||
- is similar to a string (first case), or | ||
- exactly matches a string (second case). | ||
Parameters | ||
---------- | ||
physinfo: str | ||
Name of an input file that should be bidsified (See Notes) | ||
Returns | ||
------- | ||
info: dictionary of str | ||
Dictionary containing BIDS keys | ||
Notes | ||
----- | ||
The `if ..` structure should always be similar to | ||
``` | ||
if physinfo == 'somepattern': | ||
info['var'] = 'somethingelse' | ||
``` | ||
or, in case it's a partial match | ||
``` | ||
if fnmatch.fnmatchcase(physinfo, '*somepattern?'): | ||
info['var'] = 'somethingelse' | ||
``` | ||
Where: | ||
- `physinfo` and `info` are dedicated keywords, | ||
- 'somepattern' is the name of the file, | ||
- 'var' is a bids key in the list below | ||
- 'somethingelse' is the value of the key | ||
""" | ||
info = {} | ||
# ################################# # | ||
# ## Modify here! ## # | ||
# ## ## # | ||
# ## Possible variables are: ## # | ||
# ## -info['task'] (required) ## # | ||
# ## -info['run'] ## # | ||
# ## -info['rec'] ## # | ||
# ## -info['acq'] ## # | ||
# ## -info['dir'] ## # | ||
# ## ## # | ||
# ## Remember that they are ## # | ||
# ## dictionary keys ## # | ||
# ## See example below ## # | ||
# ################################# # | ||
|
||
if fnmatch.fnmatchcase(physinfo, '*onescan*'): | ||
info['task'] = 'test' | ||
info['run'] = '01' | ||
info['rec'] = 'biopac' | ||
elif physinfo == 'Example': | ||
info['task'] = 'rest' | ||
info['run'] = '01' | ||
info['acq'] = 'resp' | ||
|
||
# ############################## # | ||
# ## Don't modify below this! ## # | ||
# ############################## # | ||
return info |
Oops, something went wrong.