Mercurial > repos > yufei-luo > s_mart
diff SMART/Java/Python/ncList/NCList.py @ 46:169d364ddd91
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 30 Sep 2013 03:19:26 -0400 |
parents | 769e306b7933 |
children |
line wrap: on
line diff
--- a/SMART/Java/Python/ncList/NCList.py Wed Sep 18 08:51:22 2013 -0400 +++ b/SMART/Java/Python/ncList/NCList.py Mon Sep 30 03:19:26 2013 -0400 @@ -108,10 +108,12 @@ self._offsets[fileType] = offset def _setFileNames(self, fileName): + print "Got file name", fileName if self._chromosome != None and fileName != None: coreName = os.path.splitext(fileName)[0] if "SMARTTMPPATH" in os.environ: coreName = os.path.join(os.environ["SMARTTMPPATH"], coreName) + print "Used core name", coreName self._hFileName = "%s_H.bin" % (coreName) self._lFileName = "%s_L.bin" % (coreName) self._tFileName = "%s_T.bin" % (coreName)