> I've put a check here, in the "open" function:
> 
>     if(!new File(file).isFile())
>         return null;

In the file HDTGraphAssembler.java, adding these lines before the
try..catch block seems to work, more or less...

        if (!new File (file).isFile ())
                return ModelFactory.createModelForGraph
(null);

I've tried this, and it looks like it creates an empty graph. That is,
I find the new graph in the dataset, but it's empty, no triples. I
don't know if or how it's possible to skip the entire graph entirely,
such that not even an empty graph is added to the dataset.

Reply via email to