Skip to content
Snippets Groups Projects
Commit b9b8165b authored by kohleman's avatar kohleman
Browse files

fixed wrong path

SVN: 23036
parent b3ed1420
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ public class IlluminaSummaryReportingPlugin extends AbstractTableModelReportingP
File originalData = getDataSubDir(context.getDirectoryProvider(), dataset);
File childDirectory = new File(originalData, dataset.getSampleCode() + path);
File childDirectory = new File(originalData, path);
File[] files = childDirectory.listFiles(new FileFilter()
{
......@@ -124,7 +124,9 @@ public class IlluminaSummaryReportingPlugin extends AbstractTableModelReportingP
for (DatasetDescription dataset : datasets)
{
File[] f = findFile(context, dataset, GERALD_DIR, DATA_INTENSITIES_BASE_CALLS_PATH);
File[] f =
findFile(context, dataset, GERALD_DIR, dataset.getSampleCode()
+ DATA_INTENSITIES_BASE_CALLS_PATH);
if (f != null)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment