Skip to content
Snippets Groups Projects
Commit f2f07e17 authored by felmer's avatar felmer
Browse files

SSDM-12929: Resolver for flow experiments with plates adapted

parent 907aa31a
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -21,6 +21,34 @@ def addSampleChildNodes(path, samplePermId, sampleType, response, acceptor, cont
contentNode = content.getRootNode()
script.addDataSetFileNodes(path, dataSetCode, contentNode, response, acceptor, context)
for t in ["FACS_ARIA", "INFLUX", "LSR_FORTESSA", "CYTOFLEX_S", "MOFLO_XDP", "S3E", "SONY_SH800S", "SONY_MA900"]:
def addSampleChildNodesWithPlates(path, samplePermId, sampleType, response, acceptor, context):
dataSetSearchCriteria = DataSetSearchCriteria()
dataSetSearchCriteria.withOrOperator()
dataSetSearchCriteria.withSample().withPermId().thatEquals(samplePermId)
parentsSearchCriteria = dataSetSearchCriteria.withSample().withParents()
parentsSearchCriteria.withPermId().thatEquals(samplePermId)
fetchOptions = DataSetFetchOptions()
fetchOptions.withType()
fetchOptions.withProperties()
fetchOptions.withSample().withType()
dataSets = context.getApi().searchDataSets(context.getSessionToken(), dataSetSearchCriteria, fetchOptions).getObjects()
for dataSet in dataSets:
sampleTypeCode = dataSet.getSample().getType().getCode()
if not sampleTypeCode.endswith("_WELL"):
dataSetCode = dataSet.getCode()
content = context.getContentProvider().asContent(dataSetCode)
contentNode = content.getRootNode()
script.addDataSetFileNodes(path, dataSetCode, contentNode, response, acceptor, context)
script.addSampleSampleChildNodes(path, samplePermId, response, acceptor, context)
for t in ["FACS_ARIA", "INFLUX", "MOFLO_XDP", "S3E", "SONY_SH800S", "SONY_MA900"]:
acceptor.hideSampleType("%s_SPECIMEN" % t)
acceptor.sampleChildrenHandlers["%s_EXPERIMENT" % t] = addSampleChildNodes
for t in ["LSR_FORTESSA", "CYTOFLEX_S"]:
acceptor.hideSampleType("%s_SPECIMEN" % t)
acceptor.hideSampleType("%s_WELL" % t)
acceptor.hideSampleType("%s_TUBE" % t)
acceptor.hideSampleType("%s_TUBESET" % t)
acceptor.sampleChildrenHandlers["%s_EXPERIMENT" % t] = addSampleChildNodesWithPlates
acceptor.sampleChildrenHandlers["%s_PLATE" % t] = addSampleChildNodes
......@@ -315,7 +315,9 @@ def addSampleChildNodes(path, samplePermId, sampleType, response, acceptor, cont
dataSetSearchCriteria.withSample().withPermId().thatEquals(samplePermId)
listDataSets(path, dataSetSearchCriteria, True, response, acceptor, context)
addSampleSampleChildNodes(path, samplePermId, response, acceptor, context)
def addSampleSampleChildNodes(path, samplePermId, response, acceptor, context):
fetchOptions = SampleFetchOptions()
fetchOptions.withExperiment()
fetchOptions.withChildren().withType()
......
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