Dear pydna developers,
Hi,
First of all I really appreciate all you have done for my previous problem.
Now, I'm trying to write a code for my program. could you please help me? Thank you in advance.
When I use "if" statement in my code with gel module, I see some errors.
For example, this code:
from pydna.gel import gel
from pydna.ladders import GeneRuler_1kb
from pydna.ladders import GeneRuler_1kb_plus
from pydna.dseqrecord import Dseqrecord
mix = [Dseqrecord("A"*int(lamp1)), Dseqrecord("A"*int(lamp2)), Dseqrecord("A"*int(lamp3)), Dseqrecord("A"*int(lamp4)),Dseqrecord("A"*int(lamp5)),Dseqrecord("A"*int(lamp6)), Dseqrecord("A"*int(lamp7))]
gel([GeneRuler_1kb_plus, mix])
if box1.value == True :
print("ddddd")
gel([GeneRuler_1kb_plus, mix])
if box2.value == True:
print("test2")
...
Each if conditions with gel module, I find errors.