CloneSet308


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8230.969block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18334
Bio/pairwise2.py
25342
Bio/pairwise2.py
Clone Instance
1
Line Count
8
Source Line
334
Source File
Bio/pairwise2.py

        # Align the first residue in sequenceB to the ith residue in
        # sequence A.  This is like opening up i gaps at the beginning
        # of sequence B.
        score = match_fn(sequenceA[i],sequenceB[0]) 
        if penalize_end_gaps: 
             score+=gap_B_fn(0,i) 
        score_matrix[i][0] = score 


Clone Instance
2
Line Count
5
Source Line
342
Source File
Bio/pairwise2.py

        score = match_fn(sequenceA[0],sequenceB[i]) 
        if penalize_end_gaps: 
             score+=gap_A_fn(0,i) 
        score_matrix[0][i] = score 


        # Fill in the score matrix.  Each position in the matrix
        # represents an alignment between a character from sequenceA to
        # one in sequence B.  As I iterate through the matrix, find the
        # alignment by choose the best of:
        #    1) extending a previous alignment without gaps
        #    2) adding a gap in sequenceA
        #    3) adding a gap in sequenceB


Clone AbstractionParameter Count: 3Parameter Bindings

  # Align the first residue in sequenceB to the ith residue in
  # sequence A.  This is like opening up i gaps at the beginning
  # of sequence B.
  score = match_fn(sequenceA[ [[#variable31a0da20]]],sequenceB[ [[#variable31a0d9c0]]]) 
  if penalize_end_gaps:
  
    score+= [[#variable31a0d940]](0,i) 
  score_matrix[ [[#variable31a0da20]]][ [[#variable31a0d9c0]]] = score 
  # Fill in the score matrix.  Each position in the matrix
  # represents an alignment between a character from sequenceA to
  # one in sequence B.  As I iterate through the matrix, find the
  # alignment by choose the best of:
  #    1) extending a previous alignment without gaps
  #    2) adding a gap in sequenceA
  #    3) adding a gap in sequenceB
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#31a0da20]]
i 
12[[#31a0da20]]
0 
21[[#31a0d9c0]]
0 
22[[#31a0d9c0]]
i 
31[[#31a0d940]]
gap_B_fn 
32[[#31a0d940]]
gap_A_fn