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
Running: asm = Assembly((pdonr_plasmid, insert), limit=6, max_nodes=10)
gives me: TypeError: Assembly.__init__() got an unexpected keyword argument 'max_nodes'
Is this intended, or should we be able to pass max_nodes when instanciating a new Assembly object?
The text was updated successfully, but these errors were encountered:
This should probably be removed from the Assembly class docstring, since you actually use it in assemble_linear instead (check the assemble_linear docstring). This is probably some remnant of how it used to be before
Absolutely! max_nodes is passed in the assemble methods. It is a parameter that I rarely used and perhaps something that might not be needed once we have manuels new assembly code.
Running:
asm = Assembly((pdonr_plasmid, insert), limit=6, max_nodes=10)
gives me:
TypeError: Assembly.__init__() got an unexpected keyword argument 'max_nodes'
Is this intended, or should we be able to pass
max_nodes
when instanciating a new Assembly object?The text was updated successfully, but these errors were encountered: