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

This file was deleted.

Original file line numberDiff line numberDiff line change
Expand Up@@ -19,6 +19,7 @@
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.labkey.api.util.FileUtil;
import org.labkey.test.BaseWebDriverTest;
import org.labkey.test.Locator;
import org.labkey.test.categories.CustomModules;
Expand DownExpand Up@@ -118,7 +119,7 @@ private void receiveDataFromGalaxyServer()
String analysisFolder = "analysis_" + getRunNumber();
for (String file: filesToCopy)
{
copyFile(new File(getPipelineLoc(), file), new File(getPipelineLoc(), analysisFolder + "/" + file));
copyFile(FileUtil.appendName(getPipelineLoc(), file), FileUtil.appendName(FileUtil.appendName(getPipelineLoc(), analysisFolder), file));
}
refresh();
waitForPipelineJobsToComplete(++pipelineJobCount, "Import genotyping analysis", false);
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,6 +19,7 @@
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.labkey.api.util.FileUtil;
import org.labkey.serverapi.reader.Readers;
import org.labkey.test.BaseWebDriverTest;
import org.labkey.test.Locator;
Expand DownExpand Up@@ -90,7 +91,7 @@ public void testSteps() throws Exception
//https://docs.google.com/a/labkey.com/file/d/0B45Fm0-0-NLtdmpDR1hKaW5jSWc/edit
private void verifyCleanIlluminaSampleSheets()
{
importFolderFromZip(new File(getPipelineLoc(), "genoCleanSamples.folder.zip"), true, 2);
importFolderFromZip(FileUtil.appendName(getPipelineLoc(), "genoCleanSamples.folder.zip"), true, 2);
goToProjectHome();
click(Locator.linkWithText("Samples"));
waitForText("SIVkcol2");
Expand Down
Loading