URI platformURI = factory.createURI(NAMESPACE + "ducktape/", InetAddress.getLocalHost().getHostName() + "/" + Global.getSerialversionuid());
URI workflowURI = factory.createURI(NAMESPACE + "workflow/", workflow.file().getAbsolutePath() + "/" + workflowMD5sum);
// The software is the agent and the workflow is the plan
stmts.add(factory.createStatement(platformURI, RDF.TYPE, agURI));
stmts.add(factory.createStatement(workflowURI, RDF.TYPE, planURI));
stmts.add(factory.createStatement(platformURI, RDFS.LABEL,
Literals.createLiteral(factory, "ducktape on: " + InetAddress.getLocalHost().getHostName() + ", versionID: " + Global.getSerialversionuid())));
stmts.add(factory.createStatement(workflowURI, RDFS.LABEL,
Literals.createLiteral(factory, workflow.name() + ", date: " + new Date(workflow.file().lastModified()))));