You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: singlecell/api-src/org/labkey/api/singlecell/CellHashingService.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,7 @@ public static class CellHashingParameters
104
104
publicIntegerminCountPerCell = 5;
105
105
publicDoublemajorityConsensusThreshold = null;
106
106
publicDoubleminAllowableDoubletRateFilter = null;
107
+
publicDoubleminAllowableSingletRate = null;
107
108
publicDoublecallerDisagreementThreshold = null;
108
109
publicList<CALLING_METHOD> methods = CALLING_METHOD.getDefaultConsensusMethods(); //Default to just executing the set used for default consensus calls, rather than additional ones
Copy file name to clipboardExpand all lines: singlecell/src/org/labkey/singlecell/CellHashingServiceImpl.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -979,6 +979,11 @@ public List<ToolParameterDescriptor> getHashingCallingParams(boolean allowMethod
979
979
put("maxValue", 1);
980
980
put("decimalPrecision", 2);
981
981
}}, 0.2),
982
+
ToolParameterDescriptor.create("minAllowableSingletRate", "Min Allowable Singlet Rate", "This is an optional threshold designed to automatically discard poorly performing callers. If a given algorithm returns a singlet rate below this level, it is discarded from the consensus.", "ldk-numberfield", newJSONObject(){{
ToolParameterDescriptor.create("doNotAllowResume", "Do Not Allow Resume", "If checked, on resume the job will repeat hashing scoring, rather than allowing resume from a saved state", "checkbox", null, false),
984
989
ToolParameterDescriptor.create("doTSNE", "Do tSNE", "If true, tSNE will be performed as part of QC", "checkbox", null, false),
@@ -1275,6 +1280,7 @@ public File generateCellHashingCalls(File citeSeqCountOutDir, File outputDir, St
0 commit comments