Skip to content
Snippets Groups Projects
Commit 190237f7 authored by buczekp's avatar buczekp
Browse files

[LMS-2185] added documentation for TSV Viewer plugin; minor improvements for...

[LMS-2185] added documentation for TSV Viewer plugin; minor improvements for common development version of service properties

SVN: 21469
parent aca3a3c5
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ reporting-plugins = demo-reporter, tsv-viewer, csv-viewer, hcs-viewer, hcs-viewe ...@@ -124,7 +124,7 @@ reporting-plugins = demo-reporter, tsv-viewer, csv-viewer, hcs-viewer, hcs-viewe
# Label of the plugin which will be shown for the users. # Label of the plugin which will be shown for the users.
demo-reporter.label = Show Dataset Size demo-reporter.label = Show Dataset Size
# Comma separated list of dataset type codes which can be handled by this plugin. # Comma separated list of dataset type codes which can be handled by this plugin.
demo-reporter.dataset-types = HCS_IMAGE demo-reporter.dataset-types = HCS_IMAGE, CONTAINER_TYPE
# Plugin class specification (together with the list of packages this class belongs to). # Plugin class specification (together with the list of packages this class belongs to).
demo-reporter.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoReportingPlugin demo-reporter.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoReportingPlugin
# The property file. Its content will be passed as a parameter to the plugin. # The property file. Its content will be passed as a parameter to the plugin.
...@@ -134,6 +134,13 @@ tsv-viewer.label = TSV View ...@@ -134,6 +134,13 @@ tsv-viewer.label = TSV View
tsv-viewer.dataset-types = TSV tsv-viewer.dataset-types = TSV
tsv-viewer.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.standard.TSVViewReportingPlugin tsv-viewer.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.standard.TSVViewReportingPlugin
tsv-viewer.properties-file = tsv-viewer.properties-file =
# Optional properties:
# - separator of values in the file, significant for TSV and CSV files; default: tab
#tsv-viewer.separator = ;
# - whether lines beginning with '#' should be ignored by the plugin; default: true
#tsv-viewer.ignore-comments = false
# - excel sheet name or index (0 based) used for the excel file (.xsl or .xslx); default: 0 (first sheet)
#tsv-viewer.excel-sheet = example_sheet_name
csv-viewer.label = CSV View csv-viewer.label = CSV View
csv-viewer.dataset-types = CSV csv-viewer.dataset-types = CSV
...@@ -166,7 +173,7 @@ processing-plugins = demo-processor ...@@ -166,7 +173,7 @@ processing-plugins = demo-processor
# The configuration of the processing plugin is the same as the reporting plugins configuration. # The configuration of the processing plugin is the same as the reporting plugins configuration.
demo-processor.label = Demo Processing demo-processor.label = Demo Processing
demo-processor.dataset-types = HCS_IMAGE demo-processor.dataset-types = HCS_IMAGE, CONTAINER_TYPE
demo-processor.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoProcessingPlugin demo-processor.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoProcessingPlugin
demo-processor.properties-file = demo-processor.properties-file =
...@@ -220,7 +227,7 @@ main-thread.incoming-dir = ${root-dir}/incoming ...@@ -220,7 +227,7 @@ main-thread.incoming-dir = ${root-dir}/incoming
# - auto-detection - when no write access will be detected for a specified 'quite-period' # - auto-detection - when no write access will be detected for a specified 'quite-period'
# - marker-file - when an appropriate marker file for the data exists. # - marker-file - when an appropriate marker file for the data exists.
# The default value is 'marker-file'. # The default value is 'marker-file'.
main-thread.incoming-data-completeness-condition = marker-file main-thread.incoming-data-completeness-condition = auto-detection
# The store format that should be applied in the incoming directory. # The store format that should be applied in the incoming directory.
main-thread.incoming-dir.format = main-thread.incoming-dir.format =
...@@ -240,14 +247,14 @@ main-thread.type-extractor.data-set-type = HCS_IMAGE ...@@ -240,14 +247,14 @@ main-thread.type-extractor.data-set-type = HCS_IMAGE
# The storage processor (IStorageProcessor implementation) # The storage processor (IStorageProcessor implementation)
main-thread.storage-processor = ch.systemsx.cisd.etlserver.DefaultStorageProcessor main-thread.storage-processor = ch.systemsx.cisd.etlserver.DefaultStorageProcessor
main-thread.storage-processor.version = 1.1 #main-thread.storage-processor.version = 1.1
main-thread.storage-processor.sampleTypeCode = CELL_PLATE #main-thread.storage-processor.sampleTypeCode = CELL_PLATE
main-thread.storage-processor.sampleTypeDescription = Screening Plate #main-thread.storage-processor.sampleTypeDescription = Screening Plate
main-thread.storage-processor.format = HCS_IMAGE V1.0 #main-thread.storage-processor.format = HCS_IMAGE V1.0
main-thread.storage-processor.number_of_channels = 2 #main-thread.storage-processor.number_of_channels = 2
main-thread.storage-processor.contains_original_data = TRUE #main-thread.storage-processor.contains_original_data = TRUE
main-thread.storage-processor.well_geometry = 3x3 #main-thread.storage-processor.well_geometry = 3x3
main-thread.storage-processor.file-extractor = ch.systemsx.cisd.etlserver.imsb.HCSImageFileExtractor #main-thread.storage-processor.file-extractor = ch.systemsx.cisd.etlserver.imsb.HCSImageFileExtractor
# Path to the script that will be executed after successful data set registration. # Path to the script that will be executed after successful data set registration.
# The script will be called with two parameters: <data-set-code> and <absolute-data-set-path> (in the data store). # The script will be called with two parameters: <data-set-code> and <absolute-data-set-path> (in the data store).
...@@ -393,6 +400,7 @@ archiver.synchronize-archive = true ...@@ -393,6 +400,7 @@ archiver.synchronize-archive = true
# <plugin>.execute-only-once - If true the task will be executed exactly once, # <plugin>.execute-only-once - If true the task will be executed exactly once,
# interval will be ignored. By default set to false. # interval will be ignored. By default set to false.
maintenance-plugins = auto-archiver maintenance-plugins = auto-archiver
#maintenance-plugins = auto-archiver, path-info-feeding
# Performs automatic archivization of 'ACTIVE' data sets based on their properties # Performs automatic archivization of 'ACTIVE' data sets based on their properties
auto-archiver.class = ch.systemsx.cisd.etlserver.plugins.AutoArchiverTask auto-archiver.class = ch.systemsx.cisd.etlserver.plugins.AutoArchiverTask
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment