You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the issue with primer_design and I use your example:
frompydna.dseqrecordimportDseqrecord# Let's create a DNA sequence record, and add a feature to itdsr=Dseqrecord("ATGCAAACAGTAATGATGGATGACATTCAAAGCACTGATTCTATTGCTGAAAAAGATAAT")
dsr.add_feature(x=0, y=60,type="gene", label="my_gene") # We add a feature to highlight the sequence as a genedsr.figure()
# Now let's design primers to amplify itfrompydna.designimportprimer_design# limit is the minimum length of the primer, target_tm is the desired melting temperature of the primeramplicon=primer_design(dsr, limit=13, target_tm=55)
# Let's print the primers, and a figure that shows where they align with the template sequenceprint("forward primer:", amplicon.forward_primer.seq)
print("reverse primer:", amplicon.reverse_primer.seq)
amplicon.figure()
I used your code previously some time ago and it worked.
The text was updated successfully, but these errors were encountered:
Hi!
I get the issue with primer_design and I use your example:
I used your code previously some time ago and it worked.
The text was updated successfully, but these errors were encountered: