// remove the recipe from the TcManager
try {
tcManager.deleteTripleCollection(recipeID);
} catch (NoSuchEntityException e) {
throw new RecipeEliminationException(e);
}
TripleCollection recipeIndexTripleCollection = tcManager.getTriples(new UriRef(recipeIndexLocation));
Triple triple = new TripleImpl(recipeID, RDF.type, Symbols.Recipe);
recipeIndexTripleCollection.remove(triple);