Skip to content

Commit

Permalink
Merge pull request #8 from neurostuff/ref/change_workflow_order
Browse files Browse the repository at this point in the history
[FIX] create result object after running meta-analysis
  • Loading branch information
jdkent authored Dec 19, 2023
2 parents 150aed3 + 3a2eaa3 commit 7b8c6b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynsc/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ def __init__(
def run_workflow(self, no_upload=False):
self.download_bundle()
self.process_bundle()
self.create_result_object()
self.run_meta_analysis()
if not no_upload:
self.create_result_object()
self.upload_results()

def download_bundle(self):
Expand Down
Empty file added pynsc/tests/__init__.py
Empty file.

0 comments on commit 7b8c6b8

Please sign in to comment.