Skip to content

Commit

Permalink
Updated default yaml to have correct field names and added dependency…
Browse files Browse the repository at this point in the history
… to PACKAGES.md
  • Loading branch information
tznind committed Feb 10, 2022
1 parent a989902 commit 174afa1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions PACKAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@
| fo-dicom.Drawing | [GitHub](https://github.com/fo-dicom/fo-dicom) | [MS-PL](https://opensource.org/licenses/MS-PL)| Support library for reading DICOM pixel data |
| coveralls.io | [GitHub](https://github.com/coveralls-net/coveralls.net) | [GNU](https://github.com/coveralls-net/coveralls.net#license)| Uploader for dot net coverage reports to Coveralls.io |
| OpenCover | [GitHub](https://github.com/OpenCover/opencover) |[MIT Compatible](https://github.com/OpenCover/opencover/blob/master/LICENSE) | Calculates code coverage for tests|
| IsIdentifiable | [GitHub](https://github.com/SMI/IsIdentifiable) | [GNU](https://github.com/SMI/IsIdentifiable/blob/main/LICENSE) | Verifies that anonymisation has been successful in data extraction pipeline|
25 changes: 13 additions & 12 deletions data/microserviceConfigs/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ ExtractImagesOptions:
ExchangeName: 'TEST.RequestInfoExchange'
MaxConfirmAttempts: 1

IsIdentifiableOptions:
IsIdentifiableServiceOptions:
QueueName: 'TEST.ExtractedFileToVerifyQueue'
QoSPrefetchCount: 1
AutoAck: false
Expand All @@ -232,17 +232,18 @@ IsIdentifiableOptions:
ClassifierType: 'Microservices.IsIdentifiable.Service.TesseractStanfordDicomFileClassifier'
DataDirectory: ''

#Optional. Full connection string to the database storing the whitelist of valid entries
WhitelistConnectionString:
#Optional. The DBMS provider of the whitelist table e.g. MySql
WhitelistDatabaseType:
#Optional. The unqualified name of the whitelist table
WhitelistTableName:
#Optional. The column in WhitelistTableName which contains the whitelist elements
WhitelistColumn:
IsIdentifiableBaseOptions:
#Optional. Full connection string to the database storing the Allowlist of valid entries
AllowlistConnectionString:
#Optional. The DBMS provider of the Allowlist table e.g. MySql
AllowlistDatabaseType:
#Optional. The unqualified name of the Allowlist table
AllowlistTableName:
#Optional. The column in AllowlistTableName which contains the Allowlist elements
AllowlistColumn:

#Optional. Path to a CSV file containing a single untitled column of whitelist values
WhitelistCsv:
#Optional. Path to a CSV file containing a single untitled column of Allowlist values
AllowlistCsv:

#Optional. Generate a report on the proportion of values failing validation (for each column)
#ColumnReport: true
Expand All @@ -258,7 +259,7 @@ IsIdentifiableOptions:
#Optional - If specified, the given separator will be used instead of ,. Includes support for \t for tab and \r\n
DestinationCsvSeparator:
#Optional - If specified all tabs, newlines (\r and \n) and 2+ spaces will be stripped from the values written as output (applies to all output formats)
DestinationNoWhitespace:
DestinationNoAllowspace:

#Optional. Full connection string to the database in which to store the report results
DestinationConnectionString:
Expand Down

0 comments on commit 174afa1

Please sign in to comment.