Zulko

Results 206 comments of Zulko

I'm motivated to eventually dust off the gallery of examples, adapt it to the new API. No preference for CompositeVideoClip, but it would make sense to me to keep it...

This is not a bug but this is an important caveat in DnaChisel: the `CodonOptimize()` objective should **always be used with a `EnforceTranslation` constraint.** In your example you should add...

Hard to say without your code, but the general problem I guess is that ImageMagick is bad at antialiasing. One easy fix is to generate a text with 2x size...

Can you provide some code ? I'll give it a look when I have time. (I wonder if it's not something that I solved in my local version...)

Note that if you want *all* features to appear below the track, the simplest is to use `ax.invert_yaxis()`. This could be added to the examples. ```python from dna_features_viewer import GraphicFeature,...

Hmm yes that's a good use case, but in that case the parameter should be something like `graphic_record.plot(features_below_track=True)` to apply to all features at once, rather than at the feature...

Yes to clarify what I meant was `features_below_track=True` that causes the plotter to transform `y` to `-y` before plotting the features, and hopefully this is enough to get them plotted...

This is because it uses Biopython indexing (from 0) by default. For genbank-type indexing (starting at 1) this should work: ```python my_graphic_record.plots_indexing == 'genbank' my_graphic_record.plot(...) ``` See the docs: ```...

Yeah DNACauldron was made to catch quirks such as palyndromic overhangs and be very vocal and stubborn about them. Just thinking out loud, but I can't be certain that `max_constructs=1`...

@veghp Objectives are expected to have a boost parameter and I believe `AllowPrimer` not having one is an oversight - possibly because I have ever only used this one as...