QUEEN icon indicating copy to clipboard operation
QUEEN copied to clipboard

QUEEN: a framework to generate quinable and efficiently editable nucleotide sequence resources

Results 3 QUEEN issues
Sort by recently updated
recently updated
newest added

When running the Example code 1 (Create a QUEEN class object (blunt-ends), dna = QUEEN(seq="CCGGTATGCGTCGA")) in Colab, I now get the "AttributeError". This error has probably occurred between 20-25.12 2023....

Hi @ponnhide, The `flipdna()` function against a QUEEN instance breaks `visualizeflow()`. Here's a minimal example. This works without any errors (No flow map would be visualized though). ``` M13F =...

```python from queen import * fragment = QUEEN(seq="CCGGTATGCG----/----ATACGCAGCT") fragment.printsequence(display=True) fig = visualizemap(fragment, seq= True ) fig = visualizemap(fragment, seq=True, rcseq = True) ``` ![image](https://user-images.githubusercontent.com/1266815/195118819-c2ef309b-c59f-4fa5-ac72-c570800754da.png) I'd expect overhang bases to be...