Skip to content

Commit

Permalink
fixing and cleaning #25
Browse files Browse the repository at this point in the history
  • Loading branch information
omarrana committed Aug 29, 2017
1 parent ad7c922 commit 874eaa6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/main/java/main/AMLGoldStandardGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class AMLGoldStandardGenerator {
private ArrayList<String> outputPath;
private ArrayList<String> inputPath;
private ArrayList<String> heterogeneityID;

private static ArrayList<String> inputName;
private static ArrayList<File> seedFiles;
private static ArrayList<File> seedOne;
Expand Down Expand Up @@ -602,17 +603,19 @@ static void runBulk() throws Exception {
sCount = 1;
while (sCount <= 10) {
if (k == 1) {
FileManager.filePath = FileManager.getRoot() + "M" + k + "/" + "M1.1/Testbeds-"
+ sCount + "/";
// creates folders if not there
FileManager.createDataPath(FileManager.getRoot() + "M" + k + "/"
+ "M1.1/Testbeds-" + sCount + "/Generated/");
FileManager.createDataPath(FileManager.getFilePath() + "Generated/");

AMLConfigManager.loadConfigurationPoisson();
generateFiles(FileManager.getFilePath());
generateGoldStandard();
} else {
FileManager.filePath = FileManager.getRoot() + "M" + k + "/Testbeds-" + sCount
+ "/Generated/";
// creates folders if not there
FileManager.createDataPath(FileManager.getRoot() + "M" + k + "/Testbeds-"
+ sCount + "/Generated/");
FileManager.createDataPath(FileManager.getFilePath() + "Generated/");

AMLConfigManager.loadConfigurationPoisson();
generateFiles(FileManager.getFilePath());
Expand Down

0 comments on commit 874eaa6

Please sign in to comment.