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 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/* Copyright (c) 2011 Peter Troshin
*
* JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0
*
* This library is free software; you can redistribute it and/or modify it under the terms of the
* Apache License version 2 as published by the Apache Software Foundation
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache
* License for more details.
*
* A copy of the license is in apache_license.txt. It is also available here:
* @see: http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Any republication or derived work distributed in source code form
* must include this copyright and license notice.
*/
package compbio.data.sequence;
import java.io.IOException;
import java.io.Writer;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlTransient;
@XmlSeeAlso({RNAStructScoreManager.class})
@XmlAccessorType(XmlAccessType.FIELD)
public class ScoreManager {
@XmlTransient
public static final String SINGLE_ENTRY_KEY = "Alignment";
protected List<ScoreHolder> seqScores;
// Do I have to change this to protected?
protected ScoreManager() {
// Default JAXB constructor
}
private ScoreManager(String id, Set<Score> data) {
seqScores = new ArrayList<ScoreManager.ScoreHolder>();
seqScores.add(new ScoreHolder(id, data));
}
private ScoreManager(Map<String, Set<Score>> data) {
List<ScoreHolder> seqScores = new ArrayList<ScoreHolder>();
for (Map.Entry<String, Set<Score>> singleSeqScores : data.entrySet()) {
seqScores.add(new ScoreHolder(singleSeqScores.getKey(),
singleSeqScores.getValue()));
}
this.seqScores = seqScores;
}
public static ScoreManager newInstance(Map<String, Set<Score>> data) {
return new ScoreManager(data);
}
public static ScoreManager newInstanceSingleScore(
Map<String, Score> seqScoresMap) {
Map<String, Set<Score>> multipleScoresMap = new TreeMap<String, Set<Score>>();
for (Map.Entry<String, Score> seqScore : seqScoresMap.entrySet()) {
Set<Score> scores = new TreeSet<Score>();
scores.add(seqScore.getValue());
multipleScoresMap.put(seqScore.getKey(), scores);
}
return new ScoreManager(multipleScoresMap);
}
public static ScoreManager newInstanceSingleSequence(Set<Score> data) {
return new ScoreManager(ScoreManager.SINGLE_ENTRY_KEY,
new TreeSet(data));
}
public Map<String, TreeSet<Score>> asMap() {
Map<String, TreeSet<Score>> seqScoresMap = new TreeMap<String, TreeSet<Score>>();
for (ScoreHolder sch : this.seqScores) {
TreeSet<Score> oldValue = seqScoresMap.put(sch.id, new TreeSet(
sch.scores));
if (oldValue != null) {
throw new IllegalStateException(
"Cannot represent this ScoreManager instance "
+ "as a Map as it contains duplicated keys: "
+ sch.id);
}
}
return seqScoresMap;
}
public Set<Score> asSet() {
if (seqScores.size() == 0 || seqScores.size() > 1) {
throw new IllegalStateException(
"This ScoreManager has no or multiple sequence entries and thus "
+ "cannot be represented as a Set. Number of entries are: "
+ seqScores.size());
}
ScoreHolder sch = seqScores.get(0);
return sch.scores;
}
public int getNumberOfSeq() {
return seqScores.size();
}
public ScoreHolder getAnnotationForSequence(String seqId) {
for (ScoreHolder sch : seqScores) {
if (sch.id.equals(seqId)) {
return sch;
}
}
return null;
}
public void writeOut(Writer outStream) throws IOException {
assert outStream != null : "Output steam is not defined!";
if (seqScores == null) {
return;
}
for (ScoreHolder oneSeqScores : seqScores) {
if (oneSeqScores == null)
continue;
oneSeqScores.writeOut(outStream);
}
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((seqScores == null) ? 0 : seqScores.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ScoreManager other = (ScoreManager) obj;
if (seqScores == null) {
if (other.seqScores != null)
return false;
} else if (!seqScores.equals(other.seqScores))
return false;
return true;
}
@XmlAccessorType(XmlAccessType.FIELD)
public static class ScoreHolder {
public String id;
public TreeSet<Score> scores;
private ScoreHolder() {
// JAXB Default constructor should not be used otherwise
}
ScoreHolder(String id, Set<Score> scores) {
this.id = id;
this.scores = new TreeSet<Score>(scores); }
public void writeOut(Writer writer) throws IOException {
writer.write(">" + id + "\n");
Score.write(scores, writer);
}
public Score getScoreByMethod(Enum<?> method) {
for (Score sc : scores) {
if (method.toString().equals(sc.getMethod())) {
return sc;
}
}
return null;
}
public Score getScoreByMethod(String method) {
for (Score sc : scores) {
if (method.toString().equals(sc.getMethod())) {
return sc;
}
}
return null;
}
public int getNumberOfScores() {
return scores.size();
}
@Override
public int hashCode() {
final int prime = 17;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
result = prime * result
+ ((scores == null) ? 0 : scores.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ScoreHolder other = (ScoreHolder) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (scores == null) {
if (other.scores != null)
return false;
} else if (!scores.equals(other.scores))
return false;
return true;
}
}
}
|