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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply plugin: 'eclipse'

sourceSets.main.java.srcDirs = ['src']
mainClassName = "main.ScriptManager"
version = 'v0.13-dev'
version = 'v0.13'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion src/main/ScriptManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
Read_AnalysisCLI.class,
Sequence_AnalysisCLI.class
},
version = "ScriptManager-v0.13-dev",
version = "ScriptManager-v0.13",
mixinStandardHelpOptions = true,
description = "Choose a tool directory from below to see more command-line tool options.",
exitCodeOnInvalidInput = 1,
Expand Down
2 changes: 1 addition & 1 deletion src/main/ScriptManagerGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import window_interface.Figure_Generation.MergeHeatMapWindow;

public class ScriptManagerGUI {
public static final String VERSION = "0.13-dev";
public static final String VERSION = "0.13";

private JFrame frmScriptManager;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Void doInBackground() throws IOException {
if(OUTPUT_PATH == null) OUT_FILE = new File( gffName );
else OUT_FILE = new File( OUTPUT_PATH + File.separator + gffName );
// Execute conversion and update progress
BEDtoGFF.convertBEDtoGFF(OUTPUT_PATH, XBED);
BEDtoGFF.convertBEDtoGFF(OUT_FILE, XBED);
int percentComplete = (int)(((double)(x + 1) / BEDFiles.size()) * 100);
setProgress(percentComplete);
}
Expand Down Expand Up @@ -197,4 +197,4 @@ public void massXable(Container con, boolean status) {
if(c instanceof Container) { massXable((Container)c, status); }
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public Void doInBackground() throws IOException {
File OUT_FILE = null;
if(OUTPUT_PATH == null) OUT_FILE = new File( newName );
else OUT_FILE = new File( OUTPUT_PATH + File.separator + newName );
// Execute expansion and update progress
ExpandGFF.expandGFFBorders(OUTPUT_PATH, XGFF, SIZE, rdbtnExpandFromCenter.isSelected());
// Execute expansion and update progress
ExpandGFF.expandGFFBorders(OUT_FILE, XGFF, SIZE, rdbtnExpandFromCenter.isSelected());
int percentComplete = (int)(((double)(x + 1) / GFFFiles.size()) * 100);
setProgress(percentComplete);
}
Expand Down Expand Up @@ -245,4 +245,4 @@ public void massXable(Container con, boolean status) {
if(c instanceof Container) { massXable((Container)c, status); }
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Void doInBackground() throws IOException {
if(OUTPUT_PATH == null) OUT_FILE = new File( bedName );
else OUT_FILE = new File( OUTPUT_PATH + File.separator + bedName );
// Execute conversion and update progress
GFFtoBED.convertGFFtoBED(OUTPUT_PATH, XGFF);
GFFtoBED.convertGFFtoBED(OUT_FILE, XGFF);
int percentComplete = (int)(((double)(x + 1) / BEDFiles.size()) * 100);
setProgress(percentComplete);
}
Expand Down Expand Up @@ -197,4 +197,4 @@ public void massXable(Container con, boolean status) {
if(c instanceof Container) { massXable((Container)c, status); }
}
}
}
}