File: SSBindCase.java

package info (click to toggle)
biojava-live 1%3A1.7.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 55,160 kB
  • sloc: java: 180,820; xml: 6,908; sql: 510; makefile: 50
file content (221 lines) | stat: -rw-r--r-- 7,587 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
 *                    BioJava development code
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  If you do not have a copy,
 * see:
 *
 *      http://www.gnu.org/copyleft/lesser.html
 *
 * Copyright for this code is held jointly by the individual
 * authors.  These should be listed in @author doc comments.
 *
 * For more information on the BioJava project and its aims,
 * or to join the biojava-l mailing list, visit the home page
 * at:
 *
 *      http://www.biojava.org/
 *
 */

package org.biojava.bio.program.ssbind;

import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

import junit.framework.TestCase;

import org.biojava.bio.search.SeqSimilaritySearchHit;
import org.biojava.bio.search.SeqSimilaritySearchResult;
import org.biojava.bio.seq.StrandedFeature.Strand;
import org.biojava.bio.seq.db.DummySequenceDB;
import org.biojava.bio.seq.db.DummySequenceDBInstallation;
import org.biojava.bio.seq.db.SequenceDB;
import org.biojava.bio.seq.db.SequenceDBInstallation;

/**
 * <code>SSBindCase</code> is a base class for tests of object
 * bindings for Blast-like SAX events.
 *
 * @author Keith James
 * @since 1.2
 */
public class SSBindCase extends TestCase
{
    protected SequenceDB             queryDB;
    protected SequenceDBInstallation dbInstallation;

    protected SeqSimilarityAdapter adapter;
    protected InputStream          searchStream;
    protected List                 searchResults;

    protected double   topHitScore;
    protected String   topHitSeqID;
    protected int     topHitQStart;
    protected int       topHitQEnd;
    protected Strand topHitQStrand;
    protected int     topHitSStart;
    protected int       topHitSEnd;
    protected Strand topHitSStrand;

    protected double   botHitScore;
    protected String   botHitSeqID;
    protected int     botHitQStart;
    protected int       botHitQEnd;
    protected Strand botHitQStrand;
    protected int     botHitSStart;
    protected int       botHitSEnd;
    protected Strand botHitSStrand;

    public SSBindCase(String name)
    {
        super(name);
    }

    protected void setUp() throws Exception
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        queryDB        = new DummySequenceDB("query");
        dbInstallation = new DummySequenceDBInstallation();
        searchResults  = new ArrayList();

        // Set builder to build into a List
        BlastLikeSearchBuilder builder =
            new BlastLikeSearchBuilder(searchResults);

        // Set the holder for query sequences and databases
        builder.setQuerySeqHolder(queryDB);
        builder.setSubjectDBInstallation(dbInstallation);

        // Adapter from SAX -> search result construction interface
        adapter = new SeqSimilarityAdapter();

        // Set the handler which will instantiate result objects
        adapter.setSearchContentHandler(builder);
    }

    protected void tearDown() throws Exception
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        searchStream.close();
        
        searchStream = null;
        queryDB = null;
        dbInstallation = null;
        adapter = null;
        searchResults = null;
        topHitSeqID = null;
        botHitSeqID = null;
    }
    
    public void testResultCount()
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        assertEquals(1, searchResults.size());
    }

    public void testResultGetQuerySequence() throws Exception
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        SeqSimilaritySearchResult result =
            (SeqSimilaritySearchResult) searchResults.get(0);

        assertEquals(queryDB.getSequence(""), result.getQuerySequence());
    }

    public void testResultGetSequenceDB()
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        SeqSimilaritySearchResult result =
            (SeqSimilaritySearchResult) searchResults.get(0);

        assertEquals(dbInstallation.getSequenceDB(""), result.getSequenceDB());
    }

    public void testResultGetAnnotation()
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        SeqSimilaritySearchResult result =
            (SeqSimilaritySearchResult) searchResults.get(0);
        int nrAnnotations = result.getAnnotation().keys().size();
        // there are either 4 or 5 annotations now with the new support for query length
        assertTrue( nrAnnotations > 3);
        assertTrue( nrAnnotations < 6);
    }

    public void testTopHit()
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        SeqSimilaritySearchResult result =
            (SeqSimilaritySearchResult) searchResults.get(0);

        SeqSimilaritySearchHit hit =
            (SeqSimilaritySearchHit) result.getHits().get(0);

        assertEquals(topHitScore, hit.getScore(), 0.0);
        assertEquals(topHitSeqID, hit.getSubjectID());

        assertEquals(topHitQStart, hit.getQueryStart());
        assertEquals(topHitQEnd,   hit.getQueryEnd());
        assertSame(topHitQStrand,  hit.getQueryStrand());

        assertEquals(topHitSStart, hit.getSubjectStart());
        assertEquals(topHitSEnd,   hit.getSubjectEnd());
        assertSame(topHitSStrand,  hit.getSubjectStrand());
    }

    public void testBotHit()
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        SeqSimilaritySearchResult result =
            (SeqSimilaritySearchResult) searchResults.get(0);

        List hits = result.getHits();

        SeqSimilaritySearchHit hit =
            (SeqSimilaritySearchHit) hits.get(hits.size() - 1);

        assertEquals(botHitScore, hit.getScore(), 0.0);
        assertEquals(botHitSeqID, hit.getSubjectID());

        assertEquals(botHitQStart, hit.getQueryStart());
        assertEquals(botHitQEnd,   hit.getQueryEnd());
        assertSame(botHitQStrand,  hit.getQueryStrand());

        assertEquals(botHitSStart, hit.getSubjectStart());
        assertEquals(botHitSEnd,   hit.getSubjectEnd());
        assertSame(botHitSStrand,  hit.getSubjectStrand());
    }

    protected void setTopHitValues(double score, String id,
                                   int qStart, int qEnd, Strand qStrand,
                                   int sStart, int sEnd, Strand sStrand)
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        topHitScore   = score;
        topHitSeqID   = id;
        topHitQStart  = qStart;
        topHitQEnd    = qEnd;
        topHitQStrand = qStrand;
        topHitSStart  = sStart;
        topHitSEnd    = sEnd;
        topHitSStrand = sStrand;
    }

    protected void setBotHitValues(double score, String id,
                                   int qStart, int qEnd, Strand qStrand,
                                   int sStart, int sEnd, Strand sStrand)
    {
    	if (this.getClass().getName().equals("org.biojava.bio.program.ssbind.SSBindCase")) return;
        botHitScore   = score;
        botHitSeqID   = id;
        botHitQStart  = qStart;
        botHitQEnd    = qEnd;
        botHitQStrand = qStrand;
        botHitSStart  = sStart;
        botHitSEnd    = sEnd;
        botHitSStrand = sStrand;
    }
}