-
Notifications
You must be signed in to change notification settings - Fork 53
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 #291 from Pavan-Bellam/workflow2
resolved issue regarding commit workflow
- Loading branch information
Showing
3 changed files
with
20 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,9 @@ def generate_kwargs(self, out_dir: PurePath, **kwargs): | |
'meta_directory': str(out_dir / 'meta') + '/', | ||
'LOG_FILENAME': str(out_dir / 'ImageExtractor.out'), | ||
'metadata_col_freq_threshold': 0.1, | ||
't_start': time.time() | ||
't_start': time.time(), | ||
'SpecificHeadersOnly': False, | ||
'PublicHeadersOnly' : True | ||
} | ||
kwargs_dict.update(**kwargs) | ||
return kwargs_dict | ||
|
@@ -142,7 +144,9 @@ def generate_config(self, **kwargs): | |
"FlattenedToLevel": "patient", | ||
"is16Bit": True, | ||
"SendEmail": False, | ||
"YourEmail": "[email protected]" | ||
"YourEmail": "[email protected]", | ||
'SpecificHeadersOnly' : False, | ||
'PublicHeadersOnly': True | ||
} | ||
config.update(**kwargs) | ||
return config | ||
|
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