From ca5bc4566fd45655d5dfb785dda1bd42778813e5 Mon Sep 17 00:00:00 2001
From: tcarver <tjc>
Date: Wed, 7 Sep 2011 10:35:24 +0100
Subject: [PATCH] define a cache file system path

---
 uk/ac/sanger/artemis/Options.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/uk/ac/sanger/artemis/Options.java b/uk/ac/sanger/artemis/Options.java
index 568aef206..d8d079ed3 100644
--- a/uk/ac/sanger/artemis/Options.java
+++ b/uk/ac/sanger/artemis/Options.java
@@ -113,6 +113,10 @@ public class Options extends Properties
 
   /** Set by getInvisibleQualifiers() and reset by resetCachedValues() */
   private StringVector invisible_qualifiers = null;
+  
+  public static String CACHE_PATH = 
+      System.getProperty("user.home") + File.separatorChar +
+      ".artemis" + File.separatorChar + "cache" + File.separatorChar;
 
   /** 
    *  Create a new Options object with default settings for the options.
-- 
GitLab