Skip to content
Merged
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: 3 additions & 2 deletions src/main/java/tappas/DataApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ public enum FeatureTypeDiversity { Transcripts, Proteins};
public static final String RESULTS_GENE_PROT = "result_gene_prot.tsv";

// class data
private final String appRunPath = System.getProperty("user.dir");
//private final String appRunPath = System.getProperty("user.dir");
private final String appRunPath = Paths.get(System.getProperty("user.home"), ".tappas").toString();
Comment on lines +205 to +206
private String appBaseFolder;
private String appProjectsBaseFolder;
private String appFolder = "";
Expand All @@ -216,7 +217,7 @@ public void loadRscriptPath() {
try {
if(Files.exists(Paths.get(getRScriptOverwriteFilepath()))) {
List<String> lines = Files.readAllLines(Paths.get(getRScriptOverwriteFilepath()), StandardCharsets.UTF_8);
String rscriptPath = "";
//String rscriptPath = "";
if(lines != null && lines.size() == 1) {
// get full path from user defined entry
// deal with windows and spaces in name, e.g. "Program Files"
Expand Down
Loading