This service returns a, possibly empty, list of those strings that are in one of the input lists but not in both. For example, the input parameters ['a','b','c'] and ['a','e','c'] will return ['b','e']. The input values ['a,'b','c'] and ['a','c','b'] will return an empty list []. Note that the order of elements in the returned list should not be relied upon.

Input ports
- list1 - A list of strings that will be differenced with those in list2. This parameter is mandatory.
- list2 - A list of strings that will be differenced with those in list1. This parameter is mandatory.
Output ports
- difference - A, possibly empty, list of those strings that are in list1 or in list2 but not in both.
Examples
Example workflows can be found on myExperiment showing: