config.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. import os
  2. import json
  3. import re
  4. def cmdMatlab():
  5. pwd=os.path.dirname(os.path.abspath(__file__))
  6. pwdUp=os.path.dirname(pwd)
  7. mDir=os.path.join(pwdUp,'matlab')
  8. with open(os.path.join(os.path.expanduser('~'),'.labkey','setup.json'),'r') as f:
  9. siteSetup=json.load(f)
  10. mExec=siteSetup['paths']['matlab']
  11. cmds=[mExec]
  12. cmds.append('-sd')
  13. cmds.append(mDir)
  14. #cmds.append('-batch')
  15. return cmds
  16. def getPatientId(row,xconfig):
  17. return row[getPatientField(xconfig)]
  18. def getPatientField(xconfig):
  19. return xconfig['ParticipantField']
  20. def getVisitField(xconfig):
  21. try:
  22. return xconfig['visitField']
  23. except KeyError:
  24. return 'visitName'
  25. def getVisitId(row,xconfig):
  26. return row[getVisitField(xconfig)]
  27. def getIdFilter(row,xconfig):
  28. return {'variable':getPatientField(xconfig),\
  29. 'value':getPatientId(row,xconfig),
  30. 'oper':'eq'}
  31. def getVisitFilter(row,xconfig):
  32. return {'variable':getVisitField(xconfig),\
  33. 'value':getVisitId(row,xconfig),
  34. 'oper':'eq'}
  35. def getFilter(xconfig):
  36. row={}
  37. fields={getPatientField(xconfig):getIdFilter,
  38. getVisitField(xconfig):getVisitFilter}
  39. qfilter=[]
  40. for f in fields:
  41. try:
  42. row[f]=xconfig[f]
  43. qfilter.append(fields[f](row,xconfig))
  44. except KeyError:
  45. continue
  46. return qfilter
  47. def getCode(row,xconfig):
  48. return '{}_{}'.format(getPatientId(row,xconfig),getVisitId(row,xconfig))
  49. def getTargetSeqNum(row,xconfig):
  50. if getVisitId(row,xconfig)=='OBR':
  51. return 2
  52. if getVisitId(row,xconfig)=='MIR1':
  53. return 3
  54. if getVisitId(row,xconfig)=='MIR2':
  55. return 4
  56. return 1
  57. def getPathList(row,xconfig):
  58. return [xconfig['baseDir'],getPatientId(row,xconfig),getVisitId(row,xconfig)]
  59. def getOutputDir(row,xconfig):
  60. return '/'.join(getPathList(row,xconfig))
  61. def getTempDir(xconfig):
  62. tempDir=xconfig['tempDir']
  63. pathList=tempDir.split('/')
  64. pathList.insert(0,os.path.expanduser('~'))
  65. return os.path.join(*pathList)
  66. def getLocalDir(row,xconfig):
  67. return os.path.join(getTempDir(xconfig),getCode(row,xconfig))
  68. def getNodeName(row,xconfig,mode,i=0):
  69. if mode=='CT':
  70. return getCode(row,xconfig)+'_CT'
  71. if mode=='NM':
  72. return '{}_Volume{}'.format(getCode(row,xconfig),i)
  73. return getCode(row,xconfig)+'_Dummy'
  74. def decode(code,xconfig):
  75. #invert code and return object equivalent to row with relevant
  76. #fields set that can be used in
  77. #getPatientId, getVisitId,getIdFilter,getVisitFilter
  78. #as an equivalent replacement for r
  79. values=code.split('_')
  80. fid=values[0]
  81. vid=values[1]
  82. return {getPatientField(xconfig):fid,getVisitField(xconfig):vid}
  83. def printRowCenterNames(r,setup):
  84. names=[]
  85. nr=setup['nr']
  86. nclass=setup['nclass']
  87. code=getCode(r,setup)
  88. #tempDir=config.getTempDir(setup)
  89. for nc in nclass:
  90. for j in range(nr):
  91. for i in range(nc):
  92. fCode='{}_{}_{}_center{}'.format(code,nc,j+1,i+1)
  93. names.append('{}_center.txt'.format(fCode))
  94. names.append('{}_centerWeight.nrrd'.format(fCode))
  95. return names
  96. def getFitParFinalName(code,nc,j,aType):
  97. fCode='{}_{}_{}'.format(code,nc,j+1)
  98. if aType!='global':
  99. fCode='{}_{}'.format(fCode,aType)
  100. return '{}_fitParFinal.txt'.format(fCode)
  101. def getFitPNGNames(code,nc,j,aType):
  102. if aType=='global':
  103. return []
  104. fCode='{}_{}_{}'.format(code,nc,j+1)
  105. #if aType!='global':
  106. fCode='{}_{}'.format(fCode,aType)
  107. names=[]
  108. for i in range(nc):
  109. names.append('{}_centers{}.png'.format(fCode,i+1))
  110. return names
  111. def printFitParFinalRowNames(r,setup,aType):
  112. names=[]
  113. nr=setup['nr']
  114. nclass=setup['nclass']
  115. code=getCode(r,setup)
  116. #tempDir=config.getTempDir(setup)
  117. for nc in nclass:
  118. for j in range(nr):
  119. names.append(getFitParFinalName(code,nc,j,aType))
  120. #add pngs of the fit (good QA)
  121. #this are only partial fits, from which global parameters are taken
  122. names+=getFitPNGNames(code,nc,j,aType)
  123. return names
  124. def getPixelFitParFinalName(code,nc,s2,mode):
  125. sigmaCode='{:.2f}'.format(s2)
  126. sigmaCode=re.sub('\.','p',sigmaCode)
  127. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  128. if mode!='general':
  129. fName='{}{}'.format(fName,mode)
  130. fName='{}_fitParFinal.txt'.format(fName)
  131. return fName
  132. def getPixelFitParFinalPngName(code,nc,i,s2,mode):
  133. sigmaCode='{:.2f}'.format(s2)
  134. sigmaCode=re.sub('\.','p',sigmaCode)
  135. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  136. if mode!='general':
  137. fName='{}{}'.format(fName,mode)
  138. fName='{}_centers{}.png'.format(fName,i)
  139. return fName
  140. def printPixelFitParFinalRowNames(r,setup,nc,s2,mode):
  141. names=[]
  142. code=getCode(r,setup)
  143. names.append(getPixelFitParFinalName(code,nc,s2,mode))
  144. for i in range(nc):
  145. names.append(getPixelFitParFinalPngName(code,nc,i+1,s2,mode))
  146. return names