CloneSet264


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
29201.000file_input_element_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13055
Bio/ExPASy/Prodoc.py
22983
Bio/Prosite/Prodoc.py
Clone Instance
1
Line Count
30
Source Line
55
Source File
Bio/ExPASy/Prodoc.py

class Record: 
     """Holds information from a Prodoc record.

    Members:
    accession      Accession number of the record.
    prosite_refs   List of tuples (prosite accession, prosite name).
    text           Free format text.
    references     List of reference objects.

    """ 

     def __init__(self): 
          self.accession = "" 
          self.prosite_refs = [ ] 
          self.text = "" 
          self.references = [ ] 
     

class Reference: 
     """Holds information from a Prodoc citation.

    Members:
    number     Number of the reference. (string)
    authors    Names of the authors.
    citation   Describes the citation.

    """ 

     def __init__(self): 
          self.number = "" 
          self.authors = "" 
          self.citation = "" 

  # Below are private functions
     


Clone Instance
2
Line Count
29
Source Line
83
Source File
Bio/Prosite/Prodoc.py

class Record: 
     """Holds information from a Prodoc record.

    Members:
    accession      Accession number of the record.
    prosite_refs   List of tuples (prosite accession, prosite name).
    text           Free format text.
    references     List of reference objects.

    """ 

     def __init__(self): 
          self.accession = "" 
          self.prosite_refs = [ ] 
          self.text = "" 
          self.references = [ ] 
     

class Reference: 
     """Holds information from a Prodoc citation.

    Members:
    number     Number of the reference. (string)
    authors    Names of the authors.
    citation   Describes the citation.

    """ 

     def __init__(self): 
          self.number = "" 
          self.authors = "" 
          self.citation = "" 
     


Clone AbstractionParameter Count: 0Parameter Bindings

class Record:
  """Holds information from a Prodoc record.

    Members:
    accession      Accession number of the record.
    prosite_refs   List of tuples (prosite accession, prosite name).
    text           Free format text.
    references     List of reference objects.

    """ 

  def __init__(self):
  
    self.accession = "" 
    self.prosite_refs = [ ] 
    self.text = "" 
    self.references = [ ] 
  

class Reference:
  """Holds information from a Prodoc citation.

    Members:
    number     Number of the reference. (string)
    authors    Names of the authors.
    citation   Describes the citation.

    """ 

  def __init__(self):
  
    self.number = "" 
    self.authors = "" 
    self.citation = "" 
    # Below are private functions
  
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None