Michael Milton
Michael Milton
Hmm, there are a few challenges with my approach. I still like the idea of using Jekyll to do the automation, because you're already using it [pretty substantially](https://github.com/multimeric/bioschemas.github.io/blob/master/_config.yml), and adding...
What do you mean by technical corner? I'm not sure what you want us to look at.
Great, thanks. I guess I'm wondering *why* it's not considered a `File` or data entity when it physically is a file inside the crate. I could envisage a scenario where...
Hmm, this might become a bit of a circular problem in that case. Maybe you could stabilise it and just be open to making new major versions that change the...
> May I ask whether you've tried it at all? Or are you in the camp where you basically won't touch features as long as they're in experimental? It depends...
No I haven't tried `guiclass` at all, just browsed through the docs and thought it sounded like a useful API. If it helps, another way to think of it is...
The fact that `LabProcess` is explicitly defined as the execution of a `LabProtocol` supports this change, I think.
I guess it might make sense to describe the abstract outcome, but I don't think it should be a `CreativeWork`, since that's concrete.
> A LabProcess represents the specific application of a LabProtocol to some input (biological material or data) to produce some output (biological material or data). This distinction is fine. I...
I also solved this using a (simpler) variant of @m-a-choquette's method: ```python class SelfNested(fields.Nested): def get_value(self, obj, attr, accessor=None, default=missing): return obj ``` *** This let me use this schema:...