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
if (ciExistingAliases.containsKey(rs.getString(FieldKey.fromString("subjectname")))) {
323
+
if (ciExistingAliases.containsKey(rs.getString(FieldKey.fromString("subjectname"))))
324
+
{
317
325
if (!ciExistingAliases.get(rs.getString(FieldKey.fromString("subjectname"))).equalsIgnoreCase(rs.getString(FieldKey.fromString("externalAlias"))))
318
326
{
319
327
_log.error("Incoming MCC alias for: " + rs.getString(FieldKey.fromString("subjectname")) + "(" + ciExistingAliases.get(rs.getString(FieldKey.fromString("subjectname"))) + ") does not match existing: " + rs.getString(FieldKey.fromString("externalAlias")));
Copy file name to clipboardExpand all lines: primeseq/src/org/labkey/primeseq/pipeline/ExacloudResourceSettings.java
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,6 @@ public List<ToolParameterDescriptor> getParams()
38
38
ToolParameterDescriptor.create("localDisk", "Local Disk (GB)", "Do not change this unless you are certain. Each job requests and uses local space (/mnt/scratch) for temp files. If your job will require more space, consider increasing this.", "ldk-integerfield", newJSONObject(){{
39
39
put("minValue", 512);
40
40
}}, 1028),
41
-
ToolParameterDescriptor.create("localSSD", "Request Nodes With SSD Scratch", "If selected, -C ssdscratch will be added to the submit script, which limits to node with faster SSD scratch space. This might be important for I/O intense jobs.", "checkbox", null, null),
42
41
ToolParameterDescriptor.create("gpus", "GPUs", "The number of GPUs requested for this job. If non-zero, the gpu partition will be used.", "ldk-integerfield", null, null),
43
42
ToolParameterDescriptor.create("useExperimentalPartition", "Use RHEL 9.6 Partition", "If selected, jobs will be submitted to the experimental rhel96TESTING partition.", "checkbox", null, null)
0 commit comments