config.py 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. #standardized file names
  84. def getPattern(ftype,code,nclass=0,ir=0,ic=0,fitType='global',qaName='fits',timepoint=0,iseg=0,qLambda=0):
  85. qLambdaString='{:.3f}'.format(qLambda).replace('.','p')
  86. replacePatterns={
  87. '_code_':code,
  88. '_nclass_':nclass,
  89. '_ir_':ir,
  90. '_ic_':ic,
  91. '_fitType_':fitType,
  92. '_qaName_':qaName,
  93. '_timepoint_':timepoint,
  94. '_iseg_':iseg,
  95. '_qLambda_':qLambdaString}
  96. map={'CT':'_code__CT.nrrd',
  97. 'SPECT':'_code__Volume_timepoint_.nrrd',
  98. 'Dummy':'_code__Dummy.mcsv',
  99. 'centerMap':'_code___nclass___ir__centerMap.txt',
  100. 'centerWeight':'_code___nclass___ir__center_ic__centerWeight.nrrd',
  101. 'centerNRRD':'_code___nclass___ir__centerMap__qaName_.nrrd',
  102. 'center':'_code___nclass___ir__center_ic__center.txt',
  103. 'fitParFinal':'_code___nclass___ir___fitType__fitParFinal.txt',
  104. 'fitPNG':'_code___nclass___ir___fitType__centers_ic_.png',
  105. 'pixelFitParFinal':'_code___nclass___ir__Pixel__fitType__fitParFinal.txt',
  106. 'pixelFitPNG':'_code___nclass___ir__Pixel__fitType__centers_ic_.png',
  107. 'fitIVF':'_code___nclass___ir___qLambda__fitParIVF.txt',
  108. 'plotIVF':'_code___nclass___ir___qLambda__plotIVF__qaName_.png',
  109. 'fitCompartment':'_code___nclass___ir___qLambda__fitCompartment__iseg___qaName_.txt',
  110. 'plotCompartment':'_code___nclass___ir___qLambda__plotCompartment__iseg___qaName_.png'}
  111. w=map[ftype]
  112. for x in replacePatterns:
  113. w=re.sub(x,'{}'.format(replacePatterns[x]),w)
  114. return w
  115. #pixels corresponding to a particular c-means class
  116. def getCenterWeight(r,setup,nclass,ir,i):
  117. code=getCode(r,setup)
  118. return f'{code}_{nclass}_{ir}_center{i}_centerWeight.nrrd'
  119. #1D TAC for a particular group center
  120. def getCenter(r,setup,nclass,ir,i):
  121. code=getCode(r,setup)
  122. return f'{code}_{nclass}_{ir}_center{i}_center.txt'
  123. #all names for determination of TAC, obsolete
  124. def printRowCenterNames(r,setup):
  125. names=[]
  126. nr=setup['nr']
  127. nclass=setup['nclass']
  128. code=getCode(r,setup)
  129. #tempDir=config.getTempDir(setup)
  130. for nc in nclass:
  131. for j in range(nr):
  132. for i in range(nc):
  133. names.append(getCenter(r,setup,nc,j+1,i+1))
  134. names.append(getCenterWeight(r,setup,nc,j+1,i+1))
  135. return names
  136. #fit of a compartment
  137. def getFitParFinalName(code,nc,j,aType):
  138. fCode='{}_{}_{}'.format(code,nc,j+1)
  139. if aType!='global':
  140. fCode='{}_{}'.format(fCode,aType)
  141. return '{}_fitParFinal.txt'.format(fCode)
  142. #fit of the IVF
  143. def getFitIVFParName(r,setup,nc,j):
  144. code=getCode(r,setup)
  145. fCode='{}_{}_{}'.format(code,nc,j+1)
  146. return f'{fCode}_fitParIVF.txt'
  147. #status report of the IVF fit (three images)
  148. def getFitIVFReportPNG(r,setup,nc,j,name):
  149. code=getCode(r,setup)
  150. fCode=f'{code}_{nc}_{j+1}_fitParIVF_{name}.png'
  151. return fCode
  152. #
  153. def getFitPNGNames(code,nc,j,aType):
  154. if aType=='global':
  155. return []
  156. fCode='{}_{}_{}'.format(code,nc,j+1)
  157. #if aType!='global':
  158. fCode='{}_{}'.format(fCode,aType)
  159. names=[]
  160. for i in range(nc):
  161. names.append('{}_centers{}.png'.format(fCode,i+1))
  162. return names
  163. def printFitParFinalRowNames(r,setup,aType):
  164. names=[]
  165. nr=setup['nr']
  166. nclass=setup['nclass']
  167. code=getCode(r,setup)
  168. #tempDir=config.getTempDir(setup)
  169. for nc in nclass:
  170. for j in range(nr):
  171. names.append(getFitParFinalName(code,nc,j,aType))
  172. #add pngs of the fit (good QA)
  173. #this are only partial fits, from which global parameters are taken
  174. names+=getFitPNGNames(code,nc,j,aType)
  175. return names
  176. def getPixelFitParFinalName(code,nc,s2,mode):
  177. sigmaCode='{:.2f}'.format(s2)
  178. sigmaCode=re.sub('\.','p',sigmaCode)
  179. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  180. if mode!='general':
  181. fName='{}{}'.format(fName,mode)
  182. fName='{}_fitParFinal.txt'.format(fName)
  183. return fName
  184. def getPixelFitParFinalPngName(code,nc,i,s2,mode):
  185. sigmaCode='{:.2f}'.format(s2)
  186. sigmaCode=re.sub('\.','p',sigmaCode)
  187. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  188. if mode!='general':
  189. fName='{}{}'.format(fName,mode)
  190. fName='{}_centers{}.png'.format(fName,i)
  191. return fName
  192. def printPixelFitParFinalRowNames(r,setup,nc,s2,mode):
  193. names=[]
  194. code=getCode(r,setup)
  195. names.append(getPixelFitParFinalName(code,nc,s2,mode))
  196. for i in range(nc):
  197. names.append(getPixelFitParFinalPngName(code,nc,i+1,s2,mode))
  198. return names