Guest User

Untitled

a guest
Feb 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. graph TB
  2.  
  3. %% structural
  4. subgraph MRI structural
  5. tone(T1)
  6. surf(FreeSurfer surfaces)
  7. src(Source space)
  8. head(Scalp surface)
  9. tone --> surf
  10. surf --> src
  11. surf --> head
  12.  
  13. %% bem
  14. flash(Flash5/30)
  15. bem(Conductor Model)
  16. surf --> bem
  17. flash --> bem
  18.  
  19. surf --> fslab
  20. fslab("Cortical Labels<br/>(*.annot, *.label)")
  21. end
  22.  
  23. %% forward
  24. trans("MRI<->head<br>transformation")
  25. info --> fwd
  26. trans --> fwd
  27. bem --> fwd
  28. src --> fwd
  29.  
  30. %% importing
  31. acq(Raw data from system)
  32. acq --> raw
  33. raw --> info
  34. info("Measurement information")
  35. raw(Preprocessed data)
  36.  
  37. %% events
  38. events("Events")
  39. raw --> events
  40.  
  41. %% epoching
  42. epo(Epochs)
  43. events --> epo
  44. raw --> epo
  45.  
  46. %% evoked
  47. evk(Evoked)
  48. epo --> evk
  49.  
  50. %% covariance
  51. cov(Covariance)
  52. epo --> cov
  53.  
  54. %% make inverse
  55. head-->trans
  56. info-->trans
  57. fwd(Forward)
  58. inv(Inverse)
  59. info --> inv
  60. cov --> inv
  61. fwd --> inv
  62.  
  63. %% apply inverse
  64. stc(SourceEstimate)
  65. evk --> stc
  66. epo --> stc
  67. inv --> stc
  68. raw --> stc
  69.  
  70. %% label time course
  71. ltc("Label time courses")
  72. fslab --> ltc
  73. stc --> ltc
  74.  
  75. subgraph Outcomes
  76. %% connectivity
  77. conn("Connectivity")
  78. decoding("Decoding (ML)")
  79. stats("Statistics")
  80.  
  81. end
  82.  
  83. ltc --> conn
  84.  
  85. %% ML
  86. epo --> decoding
  87.  
  88. %% stats
  89. ltc-->stats
  90. stc --> stats
  91. epo -->stats
  92.  
  93. %% %% %% %% %%
  94. %% classes %%
  95. %% %% %% %% %%
  96.  
  97. %% red: freesurfer objects
  98. classDef source font-weight:bold,fill:#fcc,stroke:#633,stroke-width:4px;
  99. class bem,tone,flash,src,surf,head,fslab source;
  100.  
  101. %% Blue: python objects
  102. classDef obj font-weight:bold,fill:#bce,stroke:#225,stroke-width:4px;
  103. class acq,raw,events,info,trans,epo,evk,cov,inv,arr,fwd,stc,evarr,lab obj;
  104. class ltc,decoding,stats,conn obj
Add Comment
Please, Sign In to add comment