CloneSet146


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8440.960compound_stmt
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
161162
Bio/SwissProt/SProt.py
261169
Bio/SwissProt/SProt.py
361176
Bio/SwissProt/SProt.py
481183
Bio/SwissProt/SProt.py
Clone Instance
1
Line Count
6
Source Line
1162
Source File
Bio/SwissProt/SProt.py

    def reference_author(self,line): 
        "RA line, reference author(s)." 
        assert self._current_ref is not None,"RA: missing RN" 
        if self._current_ref.authors: 
             self._current_ref.authors+=" " 
        self._current_ref.authors+=line[5: ].rstrip("""
"""                                                ) 


Clone Instance
2
Line Count
6
Source Line
1169
Source File
Bio/SwissProt/SProt.py

    def reference_title(self,line): 
        "RT line, reference title." 
        assert self._current_ref is not None,"RT: missing RN" 
        if self._current_ref.title: 
             self._current_ref.title+=" " 
        self._current_ref.title+=line[5: ].rstrip("""
"""                                              ) 


Clone Instance
3
Line Count
6
Source Line
1176
Source File
Bio/SwissProt/SProt.py

    def reference_location(self,line): 
        "RL line, reference 'location' - journal, volume, pages, year." 
        assert self._current_ref is not None,"RL: missing RN" 
        if self._current_ref.journal: 
             self._current_ref.journal+=" " 
        self._current_ref.journal+=line[5: ].rstrip("""
"""                                                ) 


Clone Instance
4
Line Count
8
Source Line
1183
Source File
Bio/SwissProt/SProt.py

    def reference_comment(self,line): 
        "RC line, reference comment." 
        assert self._current_ref is not None,"RC: missing RN" 
        #This has a key=value; structure...
        #Can we do a better job with the current Reference class?
        if self._current_ref.comment: 
             self._current_ref.comment+=" " 
        self._current_ref.comment+=line[5: ].rstrip("""
"""                                                ) 


Clone AbstractionParameter Count: 4Parameter Bindings

def [[#variable76be28e0]](self,line):
   [[#variable76be2820]]
  assert self._current_ref is not None, [[#variable76be27a0]]
  #This has a key=value; structure...
  #Can we do a better job with the current Reference class?
  if self._current_ref. [[#variable76be2700]]:
  
    self._current_ref. [[#variable76be2700]]+=" " 
  self._current_ref. [[#variable76be2700]]+=line[5: ].rstrip("""
"""                                                         ) 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#76be28e0]]
reference_comment 
12[[#76be28e0]]
reference_location 
13[[#76be28e0]]
reference_title 
14[[#76be28e0]]
reference_author 
21[[#76be2820]]
"RC line, reference comment." 
22[[#76be2820]]
"RL line, reference 'location' - journal, volume, pages, year." 
23[[#76be2820]]
"RT line, reference title." 
24[[#76be2820]]
"RA line, reference author(s)." 
31[[#76be27a0]]
"RC: missing RN" 
32[[#76be27a0]]
"RL: missing RN" 
33[[#76be27a0]]
"RT: missing RN" 
34[[#76be27a0]]
"RA: missing RN" 
41[[#76be2700]]
comment 
42[[#76be2700]]
journal 
43[[#76be2700]]
title 
44[[#76be2700]]
authors