Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
44 | 2 | 2 | 0.993 | stmt_list[9] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 44 | 856 | Bio/Restriction/Restriction.py |
2 | 44 | 971 | Bio/Restriction/Restriction.py |
| ||||
catalyze = catalyse = classmethod(catalyse) def is_blunt(self): """RE.is_blunt() -> bool. True if the enzyme produces blunt end. see also : RE.is_3overhang() RE.is_5overhang() RE.is_unknown()""" return False is_blunt = classmethod(is_blunt) def is_5overhang(self): """RE.is_5overhang() -> bool. True if the enzyme produces 5' overhang sticky end. see also : RE.is_3overhang() RE.is_blunt() RE.is_unknown()""" return False is_5overhang = classmethod(is_5overhang) def is_3overhang(self): """RE.is_3overhang() -> bool. True if the enzyme produces 3' overhang sticky end. see also : RE.is_5overhang() RE.is_blunt() RE.is_unknown()""" return False is_3overhang = classmethod(is_3overhang) def overhang(self): """RE.overhang() -> str. type of overhang of the enzyme., can be "3' overhang", "5' overhang", "blunt", "unknown" """ return "unknown" overhang = classmethod(overhang) |
| ||||
catalyze = catalyse = classmethod(catalyse) def is_blunt(self): """RE.is_blunt() -> bool. True if the enzyme produces blunt end. see also : RE.is_3overhang() RE.is_5overhang() RE.is_unknown()""" return True is_blunt = classmethod(is_blunt) def is_5overhang(self): """RE.is_5overhang() -> bool. True if the enzyme produces 5' overhang sticky end. see also : RE.is_3overhang() RE.is_blunt() RE.is_unknown()""" return False is_5overhang = classmethod(is_5overhang) def is_3overhang(self): """RE.is_3overhang() -> bool. True if the enzyme produces 3' overhang sticky end. see also : RE.is_5overhang() RE.is_blunt() RE.is_unknown()""" return False is_3overhang = classmethod(is_3overhang) def overhang(self): """RE.overhang() -> str. type of overhang of the enzyme., can be "3' overhang", "5' overhang", "blunt", "unknown" """ return "blunt" overhang = classmethod(overhang) |
| |||
catalyze = catalyse = classmethod(catalyse) def is_blunt(self): """RE.is_blunt() -> bool. True if the enzyme produces blunt end. see also : RE.is_3overhang() RE.is_5overhang() RE.is_unknown()""" return [[#variable2e7eaec0]] is_blunt = classmethod(is_blunt) def is_5overhang(self): """RE.is_5overhang() -> bool. True if the enzyme produces 5' overhang sticky end. see also : RE.is_3overhang() RE.is_blunt() RE.is_unknown()""" return False is_5overhang = classmethod(is_5overhang) def is_3overhang(self): """RE.is_3overhang() -> bool. True if the enzyme produces 3' overhang sticky end. see also : RE.is_5overhang() RE.is_blunt() RE.is_unknown()""" return False is_3overhang = classmethod(is_3overhang) def overhang(self): """RE.overhang() -> str. type of overhang of the enzyme., can be "3' overhang", "5' overhang", "blunt", "unknown" """ return [[#variable2e7ebe20]] overhang = classmethod(overhang) |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#2e7eaec0]] | False |
1 | 2 | [[#2e7eaec0]] | True |
2 | 1 | [[#2e7ebe20]] | "unknown" |
2 | 2 | [[#2e7ebe20]] | "blunt" |