swat

Results 9 comments of swat

One example is when TCGA changes their sample IDs. How do the apps interconnect when some apps have migrated to the new sample IDs and other apps have not.

From [the docs](https://flask-restplus.readthedocs.io/en/stable/api.html) apply a response data transform to add your desired content type into the dropdown list, like so: ``` @api.representation('text/tsv') def tsv_response(data, code, headers=None): resp = app.make_response(data) resp.headers['Content-Type']...

Rather than override default_mediatype, use @api.representation(). This will cause your new type to be added to the dropdown menu on the swagger interface, so the user is able to select...

I guess request and response are all in the eye of the beholder:) @api.representation() sets the *response* type on the swagger UI, but in the request received by the server,...

Thank you Gabriel, that works! I used this code to set the chip visibility: ``` customFilterListRender: v => { return (v !== undefined && v.length > 0 && v[0] !==...

Thank you Gabriel, that worked perfectly! Please carry on with this awesome package.

Setting a value with the 'value' prop puts the handle at that value. One fix is to update the value prop with every redraw when sliding. That works for me,...

thank you Karl, that makes sense, except the left offset is always correct, but not the top offset. Strange that it gets one correct and not the other. Thank you...

Rats, I have no django installed playground outside of our firewall. This was my test if you want to give it a try: - all defaults for cluetip settings, except...