config.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. return 1
  55. def getPathList(row,xconfig):
  56. return [xconfig['baseDir'],getPatientId(row,xconfig),getVisitId(row,xconfig)]
  57. def getOutputDir(row,xconfig):
  58. return '/'.join(getPathList(row,xconfig))
  59. def getTempDir(xconfig):
  60. tempDir=xconfig['tempDir']
  61. pathList=tempDir.split('/')
  62. pathList.insert(0,os.path.expanduser('~'))
  63. return os.path.join(*pathList)
  64. def getLocalDir(row,xconfig):
  65. return os.path.join(getTempDir(xconfig),getCode(row,xconfig))
  66. def getNodeName(row,xconfig,mode,i=0):
  67. if mode=='CT':
  68. return getCode(row,xconfig)+'_CT'
  69. if mode=='NM':
  70. return '{}_Volume{}'.format(getCode(row,xconfig),i)
  71. return getCode(row,xconfig)+'_Dummy'
  72. def decode(code,xconfig):
  73. #invert code and return object equivalent to row with relevant
  74. #fields set that can be used in
  75. #getPatientId, getVisitId,getIdFilter,getVisitFilter
  76. #as an equivalent replacement for r
  77. values=code.split('_')
  78. fid=values[0]
  79. vid=values[1]
  80. return {getPatientField(xconfig):fid,getVisitField(xconfig):vid}
  81. def printRowCenterNames(r,setup):
  82. names=[]
  83. nr=setup['nr']
  84. nclass=setup['nclass']
  85. code=getCode(r,setup)
  86. #tempDir=config.getTempDir(setup)
  87. for nc in nclass:
  88. for j in range(nr):
  89. for i in range(nc):
  90. fCode='{}_{}_{}_center{}'.format(code,nc,j+1,i+1)
  91. names.append('{}_center.txt'.format(fCode))
  92. names.append('{}_centerWeight.nrrd'.format(fCode))
  93. return names
  94. def getFitParFinalName(code,nc,j,aType):
  95. fCode='{}_{}_{}'.format(code,nc,j+1)
  96. if aType!='global':
  97. fCode='{}_{}'.format(fCode,aType)
  98. return '{}_fitParFinal.txt'.format(fCode)
  99. def getFitPNGNames(code,nc,j,aType):
  100. fCode='{}_{}_{}'.format(code,nc,j+1)
  101. if aType!='global':
  102. fCode='{}_{}'.format(fCode,aType)
  103. names=[]
  104. for i in range(nc):
  105. names.append('{}_centers{}.txt'.format(fCode,i+1))
  106. return names
  107. def printFitParFinalRowNames(r,setup,aType):
  108. names=[]
  109. nr=setup['nr']
  110. nclass=setup['nclass']
  111. code=getCode(r,setup)
  112. #tempDir=config.getTempDir(setup)
  113. for nc in nclass:
  114. for j in range(nr):
  115. names.append(getFitParFinalName(code,nc,j,aType))
  116. #add pngs of the fit (good QA)
  117. #this are only partial fits, from which global parameters are taken
  118. #names+=getFitPNGNames(code,nc,j,aType)
  119. return names
  120. def getPixelFitParFinalName(code,nc,s2,mode):
  121. sigmaCode='{:.2f}'.format(s2)
  122. sigmaCode=re.sub('\.','p',sigmaCode)
  123. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  124. if mode!='general':
  125. fName='{}{}'.format(fName,mode)
  126. fName='{}_fitParFinal.txt'.format(fName)
  127. return fName
  128. def getPixelFitParFinalPngName(code,nc,i,s2,mode):
  129. sigmaCode='{:.2f}'.format(s2)
  130. sigmaCode=re.sub('\.','p',sigmaCode)
  131. fName='{}_{}_{}_Pixel'.format(code,nc,sigmaCode)
  132. if mode!='general':
  133. fName='{}{}'.format(fName,mode)
  134. fName='{}_centers{}.png'.format(fName,i)
  135. return fName
  136. def printPixelFitParFinalRowNames(r,setup,nc,s2,mode):
  137. names=[]
  138. code=getCode(r,setup)
  139. names.append(getPixelFitParFinalName(code,nc,s2,mode))
  140. for i in range(nc):
  141. names.append(getPixelFitParFinalPngName(code,nc,i+1,s2,mode))
  142. return names