Skip to content

Commit

Permalink
Merge 24.7 to 24.11
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-teamcity committed Nov 25, 2024
2 parents 10f8cd4 + 6bea191 commit ea0f3a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ehr/resources/pipeline/install.r
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
##

#installs required packages for populateKinship.r
install.packages("kinship2", "Rlabkey", "getopt", "Matrix", "pedigree", dependencies=TRUE);
install.packages(c("kinship2", "Rlabkey", "getopt", "Matrix", "pedigree"), dependencies=TRUE);
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,13 @@ else if (kinshipTable.getSqlDialect().isPostgreSQL())

if (lineNum % 250000 == 0)
{
log.info("imported " + lineNum + " rows");
log.info("imported " + String.format("%,d", lineNum) + " rows");
}
}

stmt.executeBatch();
transaction.commit();
log.info("Inserted " + lineNum + " rows into ehr.kinship");
log.info("Inserted " + String.format("%,d", lineNum) + " rows into ehr.kinship");
}
}
catch (RuntimeSQLException | SQLException | IOException e)
Expand Down Expand Up @@ -705,7 +705,7 @@ private static void processInbreeding(Container c, User u, File pipelineDir, Log

transaction.commit();
}
log.info("Inserted " + lineNum + " rows into inbreeding coefficients table");
log.info("Inserted " + String.format("%,d", lineNum) + " rows into inbreeding coefficients table");

}
catch (DuplicateKeyException | SQLException | IOException | QueryUpdateServiceException e)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,11 @@ public void clickManuallyTriggerEmail(String name)

public void addManageUsers(String notification, String user)
{
log("Adding " + user + "to" + notification);
notification = notification.replace(" ", "");
notification = "manageUser_" + notification;
clickAndWait(Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups"), 0);
log("Adding " + user + " to" + notification);
notification = "manageUser_" + notification.replace(" ", "");
Locator notificationLoc = Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups");
scrollIntoView(waitForElement(notificationLoc)).click();
_ext4Helper.selectComboBoxItem("Add User Or Group:", user);
clickButton("Close", 0);

}
}

0 comments on commit ea0f3a2

Please sign in to comment.