We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new feature locations computed when adding two DSeqrecords with sticky ends are off:
DSeqrecords
from pydna.genbank import Genbank from Bio.Restriction import BamHI, NdeI
gb = Genbank("[email protected]") puc19 = gb.nucleotide("M77789.2") bb, insert = puc19.cut(NdeI,BamHI)
puc19_ = (bb + insert).looped().synced(puc19)
print(puc19_.extract_feature(2), "\n") print(puc19.extract_feature(6))
Dseqrecord circular: False size: 137 ID: pBR322 Name: pBR322 Description: description_rc Number of features: 1 /molecule_type=DNA Dseq(-137) TTCG..TTAA AAGC..AATT Dseqrecord circular: False size: 137 ID: pBR322 Name: pBR322 Description: Cloning vector pUC19, complete sequence_rc Number of features: 1 /molecule_type=DNA Dseq(-137) TCGC..GGGC AGCG..CCCG
print(puc19_.features[2], "\n") print(puc19.features[6], "\n")
type: misc_feature location: [539:676](-) qualifiers: Key: note, Value: ['pBR322'] type: misc_feature location: [547:684](-) qualifiers: Key: note, Value: ['pBR322']
The text was updated successfully, but these errors were encountered:
Thanks! Ill have a look at this.
Sorry, something went wrong.
Still working on this, regular work came in the way.
Have a solution for this, look out for a new release.
Solved in 5.2.0 I hope. Feel free to reopen if not.
No branches or pull requests
The new feature locations computed when adding two
DSeqrecords
with sticky ends are off:The text was updated successfully, but these errors were encountered: