-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Allow unrecognized pipeline names and versions in processing st…
…atus file (#401) * refactor utils to include check if all pipeline names/vers are unrecognized * rename utility functions * update tests of unrecognized pipeline names, fix warning msg * update tests of pipeline version check * add e2e test of proc status file with some unrecognized pipelines * fix message formatting * test error when no pipeline-versions recognized * add new example processing status TSVs * update message template for unrecognized pipelines
- Loading branch information
Showing
8 changed files
with
229 additions
and
54 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
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
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
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
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,6 @@ | ||
participant_id bids_participant_id session_id bids_session_id pipeline_name pipeline_version pipeline_step status | ||
01 sub-01 01 ses-01 fmriprep unknown.version1 step1 FAIL | ||
01 sub-01 01 ses-01 fmriprep unknown.version1 step2 INCOMPLETE | ||
01 sub-01 01 ses-01 fmriprep unknown.version2 default SUCCESS | ||
01 sub-01 01 ses-01 freesurfer unknown.version3 default SUCCESS | ||
01 sub-01 02 ses-02 freesurfer unknown.version3 default UNAVAILABLE |
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,6 @@ | ||
participant_id bids_participant_id session_id bids_session_id pipeline_name pipeline_version pipeline_step status | ||
01 sub-01 01 ses-01 fmriprep unknown.version step1 FAIL | ||
01 sub-01 01 ses-01 fmriprep unknown.version step2 INCOMPLETE | ||
01 sub-01 01 ses-01 unknown-pipeline 1.0.0 default SUCCESS | ||
01 sub-01 01 ses-01 freesurfer 7.3.2 default SUCCESS | ||
01 sub-01 02 ses-02 freesurfer 7.3.2 default UNAVAILABLE |
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
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