Tim Fliss

Results 13 comments of Tim Fliss

We have a Dockerfile based on fedora:24 that reproduces this test failure now.

@multimeric I am starting a review of this PR. Do you have time to merge from linkml/schema-automator main and resolve the poetry.lock conflict? I was able to do the merge...

I went ahead and tried the spot refactor suggested in my review comment. I'll be unavailable this afternoon, but can push it to a branch if there's interest. Here it...

@Silvanoc I don't have a full root cause, but for now: https://github.com/linkml/linkml/blob/fix-json-ld-context-typing/linkml/generators/jsonldgen.py#L165 Note how the arguments are passed to the constructor, but not to serialize. `add_prefixes = ContextGenerator(self.original_schema, model=False, metadata=False).serialize()`...

@Silvanoc Also these lines account for the difference in `@base` between the two forms: JSON-LD generator adds @base after the rest of the context is generated here: https://github.com/linkml/linkml/blob/fix-json-ld-context-typing/linkml/generators/jsonldgen.py#L185 The default...

@Silvanoc Below are collapsed **draft** patches that pass arguments into ContextGenerator serialize() the way jsonld-context does. They also move base processing down into ContextGenerator. We should loop in a core...

@Silvanoc Thanks for the great summary and output diffs above. The elements in your branch with type and id entries are due to the model=False argument being changed to True...

> @tfliss this looks like @Silvanoc has addressed your comments. Can you pleases take another look and make sure this is ready to go? Great work to both of you...

@vcschapp I have been working on a multi-target dataframe generator for LinkML. While parquet is not currently supported, PolaRS support (fairly interoperable with Parquet) is in progress. I've worked a...

@matentzn Yes as you say I am working out how multivalued, inline, and list work within tables in the Pandera context and whether additional configuration is needed or not. An...