Refactor sequences to be strings instead of integers, to make simulating read errors easier
This commit is contained in:
@@ -9,11 +9,11 @@ public class MatchingResult {
|
||||
private final List<String> comments;
|
||||
private final List<String> headers;
|
||||
private final List<List<String>> allResults;
|
||||
private final Map<Integer, Integer> matchMap;
|
||||
private final Map<String, String> matchMap;
|
||||
private final Duration time;
|
||||
|
||||
public MatchingResult(Map<String, String> metadata, List<String> headers,
|
||||
List<List<String>> allResults, Map<Integer, Integer>matchMap, Duration time){
|
||||
List<List<String>> allResults, Map<String, String>matchMap, Duration time){
|
||||
/*
|
||||
* POSSIBLE KEYS FOR METADATA MAP ARE:
|
||||
* sample plate filename *
|
||||
@@ -57,7 +57,7 @@ public class MatchingResult {
|
||||
return headers;
|
||||
}
|
||||
|
||||
public Map<Integer, Integer> getMatchMap() {
|
||||
public Map<String, String> getMatchMap() {
|
||||
return matchMap;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user