65cf7d4c937732d25979f0da027156d4c7599f72
wong
  Thu Oct 20 16:05:37 2011 -0700
readded test directory
diff --git python/lib/ucscgenomics/track.py python/lib/ucscgenomics/track.py
index 8bb43ef..8f3e787 100644
--- python/lib/ucscgenomics/track.py
+++ python/lib/ucscgenomics/track.py
@@ -154,31 +154,31 @@
                 if os.path.isfile(self.downloadsDirectory + file):
                     
                     stanza = None
                     if file in radict:
                         stanza = radict[file]
                         
                     if file in md5sums:
                         self._files[file] = TrackFile(self.downloadsDirectory + file, md5sums[file], stanza)
                     else:
                         self._files[file] = TrackFile(self.downloadsDirectory + file, None, stanza)
         
             return self._files
             
     @property
     def qaInitDir(self):
-        qaDir = '/hive/groups/encode/encodeQa/' + self._database + '/' + self._name + '/'
+        qaDir = '/hive/groups/encode/encodeQa/test/' + self._database + '/' + self._name + '/'
         if os.path.exists(qaDir) and os.path.isdir(qaDir):
             pass
         else:
             os.makedirs(qaDir)
         self._qaDir = qaDir
         return qaDir
 
     @property 
     def releases(self):
         """A list of all files in the release directory of this composite"""
         try:
             return self._releaseFiles
         except AttributeError:
             self._releaseFiles = list()
             count = 1