config.py 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. if xconfig[f]!='NONE':
  44. qfilter.append(fields[f](row,xconfig))
  45. except KeyError:
  46. continue
  47. return qfilter
  48. def getCode(row,xconfig):
  49. return '{}_{}'.format(getPatientId(row,xconfig),getVisitId(row,xconfig))
  50. def getTargetSeqNum(row,xconfig):
  51. if getVisitId(row,xconfig)=='OBR':
  52. return 2
  53. if getVisitId(row,xconfig)=='MIR1':
  54. return 3
  55. if getVisitId(row,xconfig)=='MIR2':
  56. return 4
  57. return 1
  58. def getPathList(row,xconfig):
  59. return [xconfig['baseDir'],getPatientId(row,xconfig),getVisitId(row,xconfig)]
  60. def getOutputDir(row,xconfig):
  61. return '/'.join(getPathList(row,xconfig))
  62. def getTempDir(xconfig):
  63. tempDir=xconfig['tempDir']
  64. pathList=tempDir.split('/')
  65. pathList.insert(0,os.path.expanduser('~'))
  66. return os.path.join(*pathList)
  67. def getLocalDir(row,xconfig):
  68. return os.path.join(getTempDir(xconfig),getCode(row,xconfig))
  69. def getNodeName(row,xconfig,mode,i=0):
  70. if mode=='CT':
  71. return getCode(row,xconfig)+'_CT'
  72. if mode=='NM':
  73. return '{}_Volume{}'.format(getCode(row,xconfig),i)
  74. return getCode(row,xconfig)+'_Dummy'
  75. def decode(code,xconfig):
  76. #invert code and return object equivalent to row with relevant
  77. #fields set that can be used in
  78. #getPatientId, getVisitId,getIdFilter,getVisitFilter
  79. #as an equivalent replacement for r
  80. values=code.split('_')
  81. fid=values[0]
  82. vid=values[1]
  83. return {getPatientField(xconfig):fid,getVisitField(xconfig):vid}
  84. #standardized file names
  85. def getPattern(ftype,code,nclass=0,ir=0,ic=0,fitType='global',qaName='fits',timepoint=0,iseg=0,qLambda=0):
  86. qLambdaString='{:.3f}'.format(qLambda).replace('.','p')
  87. replacePatterns={
  88. '_code_':code,
  89. '_nclass_':nclass,
  90. '_ir_':ir,
  91. '_ic_':ic,
  92. '_fitType_':fitType,
  93. '_qaName_':qaName,
  94. '_timepoint_':timepoint,
  95. '_iseg_':iseg,
  96. '_qLambda_':qLambdaString}
  97. map={'CT':'_code__CT.nrrd',
  98. 'SPECT':'_code__Volume_timepoint_.nrrd',
  99. 'Dummy':'_code__Dummy.mcsv',
  100. 'centerMap':'_code___nclass___ir__centerMap.txt',
  101. 'centerWeight':'_code___nclass___ir__center_ic__centerWeight.nrrd',
  102. 'centerNRRD':'_code___nclass___ir__centerMap__qaName_.nrrd',
  103. 'center':'_code___nclass___ir__center_ic__center.txt',
  104. 'fitParFinal':'_code___nclass___ir___fitType__fitParFinal.txt',
  105. 'fitPNG':'_code___nclass___ir___fitType__centers_ic_.png',
  106. 'pixelFitParFinal':'_code___nclass___ir__Pixel__fitType__fitParFinal.txt',
  107. 'pixelFitPNG':'_code___nclass___ir__Pixel__fitType__centers_ic_.png',
  108. 'fitIVF':'_code___nclass___ir___qLambda__fitParIVF.txt',
  109. 'plotIVF':'_code___nclass___ir___qLambda__plotIVF__qaName_.png',
  110. 'fitCompartment':'_code___nclass___ir___qLambda__fitCompartment__iseg___qaName_.txt',
  111. 'plotCompartment':'_code___nclass___ir___qLambda__plotCompartment__iseg___qaName_.png'}
  112. w=map[ftype]
  113. for x in replacePatterns:
  114. w=re.sub(x,'{}'.format(replacePatterns[x]),w)
  115. return w
  116. #pixels corresponding to a particular c-means class
  117. def getCenterWeight(r,setup,nclass,ir,i):
  118. code=getCode(r,setup)
  119. return f'{code}_{nclass}_{ir}_center{i}_centerWeight.nrrd'
  120. #1D TAC for a particular group center
  121. def getCenter(r,setup,nclass,ir,i):
  122. code=getCode(r,setup)
  123. return f'{code}_{nclass}_{ir}_center{i}_center.txt'
  124. #all names for determination of TAC, obsolete
  125. def printRowCenterNames(r,setup):
  126. names=[]
  127. nr=setup['nr']
  128. nclass=setup['nclass']
  129. code=getCode(r,setup)
  130. #tempDir=config.getTempDir(setup)
  131. for nc in nclass:
  132. for j in range(nr):
  133. for i in range(nc):
  134. names.append(getCenter(r,setup,nc,j+1,i+1))
  135. names.append(getCenterWeight(r,setup,nc,j+1,i+1))
  136. return names
  137. #fit of a compartment
  138. def getFitParFinalName(code,nc,j,aType):
  139. fCode='{}_{}_{}'.format(code,nc,j+1)
  140. if aType!='global':
  141. fCode='{}_{}'.format(fCode,aType)
  142. return '{}_fitParFinal.txt'.format(fCode)
  143. #fit of the IVF
  144. def getFitIVFParName(r,setup,nc,j):
  145. code=getCode(r,setup)
  146. fCode='{}_{}_{}'.format(code,nc,j+1)
  147. return f'{fCode}_fitParIVF.txt'
  148. #status report of the IVF fit (three images)
  149. def getFitIVFReportPNG(r,setup,nc,j,name):
  150. code=getCode(r,setup)
  151. fCode=f'{code}_{nc}_{j+1}_fitParIVF_{name}.png'
  152. return fCode
  153. #
  154. def getFitPNGNames(code,nc,j,aType):
  155. if aType=='global':
  156. return []
  157. fCode='{}_{}_{}'.format(code,nc,j+1)
  158. #if aType!='global':
  159. fCode='{}_{}'.format(fCode,aType)
  160. names=[]
  161. for i in range(nc):
  162. names.append('{}_centers{}.png'.format(fCode,i+1))
  163. return names
  164. def printFitParFinalRowNames(r,setup,aType):
  165. names=[]
  166. nr=setup['nr']
  167. nclass=setup['nclass']
  168. code=getCode(r,setup)
  169. #tempDir=config.getTempDir(setup)
  170. for nc in nclass:
  171. for j in range(nr):
  172. names.append(getFitParFinalName(code,nc,j,aType))
  173. #add pngs of the fit (good QA)
  174. #this are only partial fits, from which global parameters are taken
  175. names+=getFitPNGNames(code,nc,j,aType)
  176. return names
  177. def getPixelFitParFinalName(code,nc,s2,mode):
  178. sigmaCode='{:.2f}'.format(s2)
  179. sigmaCode=re.sub('\.','p',sigmaCode)
  180. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  181. if mode!='general':
  182. fName='{}{}'.format(fName,mode)
  183. fName='{}_fitParFinal.txt'.format(fName)
  184. return fName
  185. def getPixelFitParFinalPngName(code,nc,i,s2,mode):
  186. sigmaCode='{:.2f}'.format(s2)
  187. sigmaCode=re.sub('\.','p',sigmaCode)
  188. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  189. if mode!='general':
  190. fName='{}{}'.format(fName,mode)
  191. fName='{}_centers{}.png'.format(fName,i)
  192. return fName
  193. def printPixelFitParFinalRowNames(r,setup,nc,s2,mode):
  194. names=[]
  195. code=getCode(r,setup)
  196. names.append(getPixelFitParFinalName(code,nc,s2,mode))
  197. for i in range(nc):
  198. names.append(getPixelFitParFinalPngName(code,nc,i+1,s2,mode))
  199. return names