Matt Swain
Matt Swain
This might be a bit trickier than I first thought.... I presume the first thing to do is to add to `DEFAULT_FIELD_MAPPING `: marshmallow.fields.Tuple: ("array", None), But from reading the...
I have found that using the `path` parameter to `PyTessBaseAPI` never works for me on Windows. I either have to use the `TESSDATA_PREFIX` environment variable or make sure the tessdata...
@simonflueckiger I don't think my conda recipe for tesserocr is working properly on Windows yet, it's still a work in progress...
Ah oops yes, I skimmed over the thread too quickly!
This is resolved by `HetAtomTautomerv2` in #6289
I did notice that Gemmi has a `--short-ter` option to write "iotbx-compatible" TER records without numbers. I'm not sure what the rationale is for diverging from the spec - maybe...
I'm having trouble with this also. It seems that wherever I put it, I get circular import problems.
This is very odd, given that the full python include path is correctly listed as one of the `-I` flags for clang, as you say. You obviously shouldn't have to...
Yeah, I didn't manage to add these before the 2.0.0 release. It is on the 'To Do list' for the next release, when I get some time.
Here's a rough idea of how you could implement it yourself: ```python def search_by_mass(mass, mass_range, datasources=None, order=None, direction=None): qid = cs.filter_mass(mass, mass_range, datasources, order, direction) while True: status = cs.filter_status(qid)...