CloneSet202


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17201.000file_input_element_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
117111
Bio/SwissProt/__init__.py
217251
Bio/UniGene/__init__.py
Clone Instance
1
Line Count
17
Source Line
111
Source File
Bio/SwissProt/__init__.py

def parse(handle): 
     while True: 
          record = _read(handle) 
          if not record: 
               return 
          yield record 
     

def read(handle): 
     record = _read(handle) 
     if not record: 
          raise ValueError("No SwissProt record found") 
      # We should have reached the end of the record by now
     remainder = handle.read( ) 
     if remainder: 
          raise ValueError("More than one SwissProt record found") 
     return record 


 # Everything below is considered private


Clone Instance
2
Line Count
17
Source Line
251
Source File
Bio/UniGene/__init__.py

def parse(handle): 
     while True: 
          record = _read(handle) 
          if not record: 
               return 
          yield record 
     

def read(handle): 
     record = _read(handle) 
     if not record: 
          raise ValueError("No SwissProt record found") 
      # We should have reached the end of the record by now
     remainder = handle.read( ) 
     if remainder: 
          raise ValueError("More than one SwissProt record found") 
     return record 


 # Everything below is private


Clone AbstractionParameter Count: 0Parameter Bindings

def parse(handle):
  while True:
  
    record = _read(handle) 
    if not record:
    
      return 
    yield record 
  

def read(handle):
  record = _read(handle) 
  if not record:
  
    raise ValueError("No SwissProt record found") 
    # We should have reached the end of the record by now
  remainder = handle.read( ) 
  if remainder:
  
    raise ValueError("More than one SwissProt record found") 
  return record 
  # Everything below is private
  # Everything below is considered private
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None