Closed hgbrian closed 8 years ago
Hi, Thanks for the bug report. I will look into this right away.
I have made som changes that I think will solve this bug.
This notebook has some code that is I think is doing something similar to what you describe.
These changes will go into the next release which will also be Python 3 only.
I wanted to create some primers to insert one DNA segment (GFP) into a vector (pUC19). I assume I am supposed to use
integration_primers
here, notassembly_primers
?p1,p2 = pydna.integration_primers(pUC19_EcoRI, gfp, pUC19_EcoRI, minlength=24, target_tm=63, min_olap=30, primerc=500)
After this, I want to access the data from the PCR program.
However, the primer concentration (and saltc) does not change (not it's 500 vs 1000) because the
Amplicon
class has the following code:There is no
self.forward_primer_concentration
available in theAmplicon
class. I don't understand why the program is produced by an independentAmplicon
class and not somehow produced with theintegration_primers
parameters?Great work on this library. Thanks!