// Leave the first input of multiply targeting the target collector (it will be an argument of the positiveOutlierDetector gem),
// but hook up the second input of multiply to the stdDev reflector
gemGraph.connectGems(stdDevReflector.getOutputPart(), multiplyGem.getInputPart(1));
Gem greaterThanEqualsGem = gemFactory.makeFunctionalAgentGem(CAL_Prelude.Functions.greaterThanEquals);
gemGraph.addGem(greaterThanEqualsGem);
gemGraph.connectGems(subtractGem.getOutputPart(), greaterThanEqualsGem.getInputPart(0));
gemGraph.connectGems(multiplyGem.getOutputPart(), greaterThanEqualsGem.getInputPart(1));
gemGraph.connectGems(greaterThanEqualsGem.getOutputPart(), isPositiveOutlierCollector.getInputPart(0));