IIndividual individual = AlleleManager.alleleRegistry.getIndividual(stackToAnalyze);
// No bee, abort
if (individual == null)
return false;
individual.analyze();
NBTTagCompound nbttagcompound = new NBTTagCompound();
individual.writeToNBT(nbttagcompound);
stackToAnalyze.setTagCompound(nbttagcompound);
pendingProducts.push(stackToAnalyze);