Expanding simulation to attempt CDR3/CDR1 matching - doubles size of cells

This commit is contained in:
2021-11-15 15:00:11 -06:00
parent c425b05d8c
commit 13b58e3204
5 changed files with 445 additions and 56 deletions

View 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;
}
}