Skip to content

Commit ee105f8

Browse files
committed
returned heudiconv_monitor and TODO column into events file
1 parent ec2a044 commit ee105f8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

heudiconv/bids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def populate_bids_templates(path, defaults={}):
8686
events_file = fpath[:-len(suf)] + '_events.tsv'
8787
lgr.debug("Generating %s", events_file)
8888
with open(events_file, 'w') as f:
89-
f.write("onset\tduration\ttrial_type\tresponse_time")
89+
f.write("onset\tduration\ttrial_type\tresponse_time\tTODO -- fill in rows and add more tab-separated columns if desired")
9090
# extract tasks files stubs
9191
for task_acq, fields in tasks.items():
9292
task_file = op.join(path, task_acq + '_bold.json')

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def findsome(subdir, extensions):
4141
long_description=ldict['__longdesc__'],
4242
entry_points={'console_scripts': [
4343
'heudiconv=heudiconv.cli.run:main',
44+
'heudiconv_monitor=heudiconv.cli.monitor:main',
4445
]},
4546
install_requires=ldict['REQUIRES'],
4647
extras_require=ldict['EXTRA_REQUIRES'],

0 commit comments

Comments
 (0)