Expanding simulation to attempt CDR3/CDR1 matching - doubles size of cells
This commit is contained in:
32
src/main/java/MatchingResult.java
Normal file
32
src/main/java/MatchingResult.java
Normal file
@@ -0,0 +1,32 @@
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class MatchingResult {
|
||||
private List<String> comments;
|
||||
private List<String> headers;
|
||||
private List<List<String>> allResults;
|
||||
private Map<Integer, Integer> matchMap;
|
||||
|
||||
public MatchingResult(List<String> comments, List<String> headers, List<List<String>> allResults, Map<Integer, Integer>matchMap){
|
||||
this.comments = comments;
|
||||
this.headers = headers;
|
||||
this.allResults = allResults;
|
||||
this.matchMap = matchMap;
|
||||
}
|
||||
|
||||
public List<String> getComments() {
|
||||
return comments;
|
||||
}
|
||||
|
||||
public List<List<String>> getAllResults() {
|
||||
return allResults;
|
||||
}
|
||||
|
||||
public List<String> getHeaders() {
|
||||
return headers;
|
||||
}
|
||||
|
||||
public Map<Integer, Integer> getMatchMap() {
|
||||
return matchMap;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user