Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions mGAP/src/org/labkey/mgap/pipeline/SnpSiftWrapper.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,12 +32,11 @@ public void runSnpSift(File dbnsfpFile, File input, File output) throws Pipeline
params.addAll(SequencePipelineService.get().getJavaOpts());
params.add("-jar");
params.add(getSnpSiftJar().getPath());
params.add("dbnsfp");
params.add("DbNsfp");
params.add("-db");
params.add(dbnsfpFile.getPath());

params.add("-noStats");
params.add("-nodownload");
params.add("-noDownload");

params.add(input.getPath());

Expand Down
1 change: 1 addition & 0 deletions mcc/test/src/org/labkey/test/tests/mcc/MccTest.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,6 +107,7 @@ private void testAnimalImportAndTransfer() throws Exception
Ext4FieldRef.getForLabel(this, "Effective Date").setValue(new SimpleDateFormat("MM/dd/yyyy").format(new Date()));
Ext4ComboRef combo = Ext4ComboRef.getForLabel(this, "Destination Center Name");
combo.clickTrigger();
combo.waitForStoreLoad();
waitAndClick(Locator.tagContainingText("li", "Other"));

Window<?> dialog = new Window.WindowFinder(getDriver()).withTitle("Enter Value").waitFor();
Expand Down