LNCD

Table of Contents

  • LNCD Home
  • Administration
  • Notebooks
  • Journal Club Presentations
  • Publications
  • Current Projects
  • Completed Projects
  • Current Grants
  • Datasets by Project
  • Brain ROIs and Measures
  • ️Tools And Methods
  • Big Data
  • RA Homepage
  • Recent Changes
  • Maintenance
  • Site Map
  • Random Page
LNCD
Docs » Cog Grant

This is an old revision of the document!


Cog Grant

Scanned with 3T on southside (BIRC → NIC) before it was shut down (c. 2019).

Tasks

MR

for d in /Volumes/Hera/Raw/MRprojects/CogLong/150411090938/*; do 
  find $d -type f -iname '*dcm' -exec\
   dicom_hinfo \
       -sepstr \| -no_name -full_entry \
       -tag 0018,1030 -tag 0018,0080 -tag 0018,1310 {} \; \
       -quit
   done | sed 's/^\|$/|/g'
acq name TR Acq Mat
circle_localizer20 0 256 256 0
trufi_sag 5.43 0 256 256 0
t2_tse_tra4790 0 256 256 0
t1_mprage_sag_ns_tilt 1630 0 256 256 0
ep2d_diff_mddw6 3900 128 0 0 128
ep2d_bold_9VGSANTI1500 64 0 0 64
ep2d_bold_9VGSANTI1500 64 0 0 64
ep2d_bold_9VGSANTI1500 64 0 0 64
ep2d_bold_9VGSANTI1500 64 0 0 64
ep2d_bold_MGS 1500 64 0 0 64
ep2d_bold_MGS 1500 64 0 0 64
ep2d_bold_MGS 1500 64 0 0 64
t1_mprage_sag_ns_tilt 1630 0 256 256 0

Behavioral

Tasks recorded in the original MS Access Database (exported to postgresql)

lncddb "select task, count(*) cnt
  from visit_task natural
  join visit_study
  where study like 'Cog%'
  group by task
  order by cnt desc;
task cnt
Demographics 880
PaperStroop 845
PrePostBehavioral 837
CANTABQuestionnaire 831
SensationSeeking 680
PrePostScan 624
Puberty 581
WASI 553
Handedness 477
CBCL 12
EpilepsyQuestionnaire 11
CDI 11
BRIEF 11
SCARED 11
PVLHandedness 2
WMPrePostScan 2
WoodcockJohnson 1
PVLQuestionnaire 1
CELF 1
ASR 1
PPVT 1
RewardsPrePostScan 1

Sensation Seeking

select measures::json 
 from visit_task 
 natural join visit_study
 where study like 'Cog%' and
       task like 'SensationSeeking%'
 limit 3;
 
                                   measures                                    
--------------------------------------------------------------------------------
 {"Notes": "", "sssBS": 1, "sssES": 2, "sssDIS": 1, "sssTAS": 6, "sssTOT": 10}
 {"Notes": "", "sssBS": 3, "sssES": 3, "sssDIS": 4, "sssTAS": 4, "sssTOT": 14}
 {"Notes": "", "sssBS": 1, "sssES": 6, "sssDIS": 4, "sssTAS": 10, "sssTOT": 21}
Previous Next