Boris Burkov
Boris Burkov
My knowledge of Developer Tools in Chrome is somewhat imperfect, but AFAIK, this functionality is not available by default, but it could be very, very useful. Every once in a...
*Note*: Before submitting this pull request, please review our [contributing guidelines](https://faust.readthedocs.io/en/master/contributing.html). ## Description Please describe your pull request. NOTE: All patches should be made against master, not a maintenance branch...
I've attempted to serialize the following model: ``` class Tool(Document): cwlVersion = fields.StringField(required=False, null=True, choices=['cwl:draft-2']) ``` I passed a wrong value for cwlVersion: "does not matter" and received the following...
Suppose that you have a Document with EmbeddedDocument within: ``` class Child(EmbeddedDocument): name = StringField() class Parent(Document): child = EmbeddedDocumentField(Child) ``` and you want to add a custom validator for...
Suppose that I've overridden `id` field on a Document with an arbitrary datatype (non-ObjectId) and created a default serializer for it: ``` class MyDocument(Document): id = StringField(primary_key=True, required=True) class MySerializer(DocumentSerializer):...
I'm observing the following incorrect behaviour with Genoverse. I initialise Genoverse with 3 tracks, one of them is loading very slowly.  After that...
Hi, Ken! I'm trying to create an embeddable component for RNAcentral sequence search to be plugged-in into member databases websites. I want the component to be styled in EBI theme...
TODO: Check that bugs from #298 are gone.
Our codebase is getting bloated. As a minor refactoring, move RnaFlatSerializer to export application and keep it there.