View Javadoc

1   /*--------------------------------------------------------------------------
2    *  Copyright 2007 utgenome.org
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   *--------------------------------------------------------------------------*/
16  //--------------------------------------
17  // UTGB Common Project
18  //
19  // PSLLine.java
20  // Since: Jun 5, 2007
21  //
22  // $URL$ 
23  // $Author$
24  //--------------------------------------
25  package org.utgenome.format.psl;
26  
27  public class PSLLine {
28  	int matches;
29  	int misMatches;
30  	int repMathces;
31  	int nCount;
32  	int qNumInsert;
33  	int qBaseInsert;
34  	int tNumInsert;
35  	int tBaseInsert;
36  	String strand;
37  	String qName;
38  	int qSize;
39  	int qStart;
40  	int qEnd;
41  	String tName;
42  	int tSize;
43  	int tStart;
44  	int tEnd;
45  	int blockCount;
46  	int[] blockSizes;
47  	int[] qStarts;
48  	int[] tStarts;
49  	
50  	public PSLLine()
51  	{}
52  
53  	public int getBlockCount() {
54  		return blockCount;
55  	}
56  
57  	public void setBlockCount(int blockCount) {
58  		this.blockCount = blockCount;
59  	}
60  
61  	public int[] getBlockSizes() {
62  		return blockSizes;
63  	}
64  
65  	public void setBlockSizes(int[] blockSizes) {
66  		this.blockSizes = blockSizes;
67  	}
68  
69  	public int getMatches() {
70  		return matches;
71  	}
72  
73  	public void setMatches(int matches) {
74  		this.matches = matches;
75  	}
76  
77  	public int getMisMatches() {
78  		return misMatches;
79  	}
80  
81  	public void setMisMatches(int misMatches) {
82  		this.misMatches = misMatches;
83  	}
84  
85  	public int getNCount() {
86  		return nCount;
87  	}
88  
89  	public void setNCount(int count) {
90  		nCount = count;
91  	}
92  
93  	public int getQBaseInsert() {
94  		return qBaseInsert;
95  	}
96  
97  	public void setQBaseInsert(int baseInsert) {
98  		qBaseInsert = baseInsert;
99  	}
100 
101 	public int getQEnd() {
102 		return qEnd;
103 	}
104 
105 	public void setQEnd(int end) {
106 		qEnd = end;
107 	}
108 
109 	public String getQName() {
110 		return qName;
111 	}
112 
113 	public void setQName(String name) {
114 		qName = name;
115 	}
116 
117 	public int getQNumInsert() {
118 		return qNumInsert;
119 	}
120 
121 	public void setQNumInsert(int numInsert) {
122 		qNumInsert = numInsert;
123 	}
124 
125 	public int getQSize() {
126 		return qSize;
127 	}
128 
129 	public void setQSize(int size) {
130 		qSize = size;
131 	}
132 
133 	public int getQStart() {
134 		return qStart;
135 	}
136 
137 	public void setQStart(int start) {
138 		qStart = start;
139 	}
140 
141 	public int[] getQStarts() {
142 		return qStarts;
143 	}
144 
145 	public void setQStarts(int[] starts) {
146 		qStarts = starts;
147 	}
148 
149 	public int getRepMathces() {
150 		return repMathces;
151 	}
152 
153 	public void setRepMathces(int repMathces) {
154 		this.repMathces = repMathces;
155 	}
156 
157 	public String getStrand() {
158 		return strand;
159 	}
160 
161 	public void setStrand(String strand) {
162 		this.strand = strand;
163 	}
164 
165 	public int getTBaseInsert() {
166 		return tBaseInsert;
167 	}
168 
169 	public void setTBaseInsert(int baseInsert) {
170 		tBaseInsert = baseInsert;
171 	}
172 
173 	public int getTEnd() {
174 		return tEnd;
175 	}
176 
177 	public void setTEnd(int end) {
178 		tEnd = end;
179 	}
180 
181 	public String getTName() {
182 		return tName;
183 	}
184 
185 	public void setTName(String name) {
186 		tName = name;
187 	}
188 
189 	public int getTNumInsert() {
190 		return tNumInsert;
191 	}
192 
193 	public void setTNumInsert(int numInsert) {
194 		tNumInsert = numInsert;
195 	}
196 
197 	public int getTSize() {
198 		return tSize;
199 	}
200 
201 	public void setTSize(int size) {
202 		tSize = size;
203 	}
204 
205 	public int getTStart() {
206 		return tStart;
207 	}
208 
209 	public void setTStart(int start) {
210 		tStart = start;
211 	}
212 
213 	public int[] getTStarts() {
214 		return tStarts;
215 	}
216 
217 	public void setTStarts(int[] starts) {
218 		tStarts = starts;
219 	}
220 	
221 }
222 
223 
224 
225