Skip to content

Commit

Permalink
Fix the example batch config to match defaults
Browse files Browse the repository at this point in the history
With this change, people who copy/paste the example batch configuration YAML
will get the default behaviour. This could have saved me a lot of debugging :-)
  • Loading branch information
ylep committed Feb 16, 2022
1 parent 23d0875 commit 8430419
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions BATCH.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ The configuration file should be in yaml format as shown in example `batch_confi
```yaml
Options:
isGz: false
isFlipY: false
isFlipY: true
isVerbose: false
isCreateBIDS: false
isCreateBIDS: true
isOnlySingleFile: false
Files:
-
Expand Down
4 changes: 2 additions & 2 deletions batch_config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Options:
isGz: false
isFlipY: false
isFlipY: true
isVerbose: false
isCreateBIDS: false
isCreateBIDS: true
isOnlySingleFile: false

Files:
Expand Down
4 changes: 2 additions & 2 deletions console/main_console_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ void showHelp(const char * argv[]) {
printf("### START YAML FILE ###\n");
printf("Options:\n");
printf(" isGz: false\n");
printf(" isFlipY: false\n");
printf(" isFlipY: true\n");
printf(" isVerbose: false\n");
printf(" isCreateBIDS: false\n");
printf(" isCreateBIDS: true\n");
printf(" isOnlySingleFile: false\n");
printf("Files:\n");
printf(" -\n");
Expand Down
4 changes: 2 additions & 2 deletions docs/source/dcm2niibatch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ The configuration file should be in yaml format as shown in example *batch_confi
Options:
isGz: false
isFlipY: false
isFlipY: true
isVerbose: false
isCreateBIDS: false
isCreateBIDS: true
isOnlySingleFile: false
Files:
-
Expand Down

0 comments on commit 8430419

Please sign in to comment.