Skip to content
Snippets Groups Projects
Commit 22ce5772 authored by tpylak's avatar tpylak
Browse files

LMS-2389 set analysis procedure using the api

SVN: 22064
parent f6a27518
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,6 @@ OVERLAYS_TRANSPARENT_COLOR = "black"
""" file format of the analysis dataset """
ANALYSIS_FILE_FORMAT = "CSV"
ANALYSIS_RUN_PROPCODE = "$ANALYSIS_PROCEDURE"
""" should thumbnails be generated? """
GENERATE_THUMBNAILS = True
......@@ -637,11 +636,12 @@ if incoming.isDirectory():
featureProps.setProperty("well-name-col-is-alphanum", "true")
analysisDataSetDetails = factory.createFeatureVectorRegistrationDetails(analysisCSVFile.getPath(), featureProps)
analysisProcedureCode = extractFileBasename(analysisFile.getName())
analysisDataSetDetails.getDataSetInformation().setAnalysisProcedure(analysisProcedureCode)
analysisDataSet = transaction.createNewDataSet(analysisDataSetDetails)
analysisDataSet.setSample(imageDataSet.getSample())
analysisDataSet.setParentDatasets([ imageDataSet.getDataSetCode() ])
analysisDataSet.setFileFormatType(ANALYSIS_FILE_FORMAT)
analysisDataSet.setPropertyValue(ANALYSIS_RUN_PROPCODE, extractFileBasename(analysisFile.getName()))
transaction.moveFile(analysisCSVFile.getPath(), analysisDataSet)
imageDataSetFolder = transaction.moveFile(incoming.getPath(), imageDataSet)
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