Cleanup file output, add UI verbosity
This commit is contained in:
@@ -138,9 +138,9 @@ public class Simulator {
|
||||
}
|
||||
|
||||
//match CDR3s.
|
||||
public static MatchingResult matchCDR3s(GraphWithMapData data, Integer lowThreshold, Integer highThreshold,
|
||||
Integer maxOccupancyDifference, Integer minOverlapPercent,
|
||||
boolean verbose) {
|
||||
public static MatchingResult matchCDR3s(GraphWithMapData data, String dataFilename, Integer lowThreshold,
|
||||
Integer highThreshold, Integer maxOccupancyDifference,
|
||||
Integer minOverlapPercent, boolean verbose) {
|
||||
Instant start = Instant.now();
|
||||
int numWells = data.getNumWells();
|
||||
Integer alphaCount = data.getAlphaCount();
|
||||
@@ -250,6 +250,8 @@ public class Simulator {
|
||||
String concentrationString = concentrationStringBuilder.toString();
|
||||
|
||||
List<String> comments = new ArrayList<>();
|
||||
comments.add("Source Sample Plate filename: " + data.getSourceFilename());
|
||||
comments.add("Source Graph and Data filename: " + dataFilename);
|
||||
comments.add("T cell counts in sample plate wells: " + concentrationString);
|
||||
comments.add("Total alphas found: " + alphaCount);
|
||||
comments.add("Total betas found: " + betaCount);
|
||||
|
||||
Reference in New Issue
Block a user