# Working with Submitted Samples

For a pooled derived sample consisting of several submitted samples, Lab Logic Toolkit exposes a *submittedSamples* property that is a collection of the submitted samples represented in the well.

* *submittedSamples* returns a list of submitted samples.
* If it is not a pooled sample, it will return a list of 1.
* *submittedSample* returns an error if sample is pooled.

Use this collection to read and/or update all related submitted samples.

For example:

* To set the sample level UDF/custom field for each of the related submitted samples:

  <pre class="language-markup" data-overflow="wrap"><code class="lang-markup">-exp 'submittedSamples.each { sample -> sample.::My Sample-Level UDF:: = 123 }'
  </code></pre>
* To sum the *Volume* UDF/custom field on all the related submitted samples into a single value written to the input analyte / derived sample:

  <pre class="language-markup" data-overflow="wrap"><code class="lang-markup">-exp 'input.::Total Origin Sample Volume:: = submittedSamples.sum { sample -> sample.::Volume:: }'
  </code></pre>

For information on Groovy syntax and closures, see [Groovy Closures](https://groovy-lang.org/closures.html).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.claritylims.illumina.com/integration-toolkits/lltk/lltk-working-with-the-script/lltk-working-with-submitted-samples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
