Add sequence dropout rate to metadata output

This commit is contained in:
eugenefischer
2022-09-30 00:33:41 -05:00
parent b9b13fb75e
commit b8aeeb988f
2 changed files with 7 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ public class GraphWithMapData implements java.io.Serializable {
private final Integer[] wellPopulations;
private final int alphaCount;
private final int betaCount;
private final double dropoutRate;
private final int readDepth;
private final double readErrorRate;
private final double errorCollisionRate;
@@ -30,7 +31,7 @@ public class GraphWithMapData implements java.io.Serializable {
public GraphWithMapData(SimpleWeightedGraph graph, Integer numWells, Integer[] wellConcentrations,
Map<String, String> distCellsMapAlphaKey, Integer alphaCount, Integer betaCount,
Integer readDepth, Double readErrorRate, Double errorCollisionRate,
Double dropoutRate, Integer readDepth, Double readErrorRate, Double errorCollisionRate,
Double realSequenceCollisionRate, Duration time){
// Map<Integer, Integer> plateVtoAMap,
@@ -49,6 +50,7 @@ public class GraphWithMapData implements java.io.Serializable {
// this.plateBtoVMap = plateBtoVMap;
// this.alphaWellCounts = alphaWellCounts;
// this.betaWellCounts = betaWellCounts;
this.dropoutRate = dropoutRate;
this.readDepth = readDepth;
this.readErrorRate = readErrorRate;
this.errorCollisionRate = errorCollisionRate;
@@ -127,4 +129,6 @@ public class GraphWithMapData implements java.io.Serializable {
}
public Double getRealSequenceCollisionRate() { return realSequenceCollisionRate; }
public Double getDropoutRate() { return dropoutRate; }
}