CloneSet155


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
44220.993stmt_list[9]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
144856
Bio/Restriction/Restriction.py
244971
Bio/Restriction/Restriction.py
Clone Instance
1
Line Count
44
Source Line
856
Source File
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) 


Clone Instance
2
Line Count
44
Source Line
971
Source File
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 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) 


Clone AbstractionParameter Count: 2Parameter Bindings

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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#2e7eaec0]]
False 
12[[#2e7eaec0]]
True 
21[[#2e7ebe20]]
"unknown" 
22[[#2e7ebe20]]
"blunt"