CloneSet126


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13210.997stmt_list[7]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
113825
Bio/GenBank/Scanner.py
213894
Bio/GenBank/Scanner.py
Clone Instance
1
Line Count
13
Source Line
825
Source File
Bio/GenBank/Scanner.py

            name_and_length_str = line[GENBANK_INDENT:29] 
            while name_and_length_str.find("  ")!= -1: 
                 name_and_length_str = name_and_length_str.replace("  "," ") 
            name_and_length = name_and_length_str.split(" ") 
            assert len(name_and_length)<=2,"""Cannot parse the name and length in the LOCUS line:
"""                                        +line 
            assert len(name_and_length)!=1,"""Name and length collide in the LOCUS line:
"""                                        +line 
                   #Should be possible to split them based on position, if
                   #a clear definition of the standard exists THAT AGREES with
                   #existing files.
            consumer.locus(name_and_length[0]) 
            consumer.size(name_and_length[1]) 


Clone Instance
2
Line Count
13
Source Line
894
Source File
Bio/GenBank/Scanner.py

            name_and_length_str = line[GENBANK_INDENT:40] 
            while name_and_length_str.find("  ")!= -1: 
                 name_and_length_str = name_and_length_str.replace("  "," ") 
            name_and_length = name_and_length_str.split(" ") 
            assert len(name_and_length)<=2,"""Cannot parse the name and length in the LOCUS line:
"""                                        +line 
            assert len(name_and_length)!=1,"""Name and length collide in the LOCUS line:
"""                                        +line 
                   #Should be possible to split them based on position, if
                   #a clear definition of the stand exists THAT AGREES with
                   #existing files.
            consumer.locus(name_and_length[0]) 
            consumer.size(name_and_length[1]) 


Clone AbstractionParameter Count: 1Parameter Bindings

name_and_length_str = line[GENBANK_INDENT: [[#variable76228140]]] 
while name_and_length_str.find("  ")!= -1:
  name_and_length_str = name_and_length_str.replace("  "," ") 
name_and_length = name_and_length_str.split(" ") 
assert len(name_and_length)<=2,"""Cannot parse the name and length in the LOCUS line:
"""                            +line 
assert len(name_and_length)!=1,"""Name and length collide in the LOCUS line:
"""                            +line 
#Should be possible to split them based on position, if
#a clear definition of the stand exists THAT AGREES with
#a clear definition of the standard exists THAT AGREES with
#existing files.
consumer.locus(name_and_length[0]) 
consumer.size(name_and_length[1]) 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#76228140]]
40 
12[[#76228140]]
29