open-discussion
open-discussion > RE: slice timing information
Dec 16, 2009 09:12 PM | Daniel Glen
RE: slice timing information
Thanks. If you have an estimate of how long this would take to get
the slice timing information, that would be great.
We have also noticed that many datasets have a TR of 1.0 seconds and considered this to be unlikely. I wrote this short script to look at the NIFTI header for a TR of 1. Within the 3T data, 147 rest EPI datasets seem to have a TR of 1.0 seconds. Do you have information about this as well?
#!/bin/tcsh
# findTR1.csh
set tr1_dsets = 0
foreach rd (rest*.nii.gz)
nifti_tool -disp_hdr -infile_spec $rd |grep pixdim |grep "1.0 0.0 0.0" \
>& /dev/null
if ( ! $status ) then
echo "$rd has TR=1"
@ tr1_dsets++
endif
end
echo ""
echo "Found $tr1_dsets with a TR of 1"
We have also noticed that many datasets have a TR of 1.0 seconds and considered this to be unlikely. I wrote this short script to look at the NIFTI header for a TR of 1. Within the 3T data, 147 rest EPI datasets seem to have a TR of 1.0 seconds. Do you have information about this as well?
#!/bin/tcsh
# findTR1.csh
set tr1_dsets = 0
foreach rd (rest*.nii.gz)
nifti_tool -disp_hdr -infile_spec $rd |grep pixdim |grep "1.0 0.0 0.0" \
>& /dev/null
if ( ! $status ) then
echo "$rd has TR=1"
@ tr1_dsets++
endif
end
echo ""
echo "Found $tr1_dsets with a TR of 1"
Threaded View
| Title | Author | Date |
|---|---|---|
| Daniel Glen | Dec 14, 2009 | |
| Maarten Mennes | Dec 15, 2009 | |
| Daniel Glen | Dec 16, 2009 | |
| Xi-Nian Zuo | Dec 16, 2009 | |
| Daniel Glen | Dec 16, 2009 | |
| Lisa Kilpatrick | Jan 26, 2010 | |
| Michael Milham | Feb 1, 2010 | |
| Yunxia Tong | Feb 2, 2010 | |
| Michel Grothe | Feb 4, 2010 | |
| Maarten Mennes | Feb 6, 2010 | |
| Michael Milham | Feb 9, 2010 | |
| Sheng Zhang | Mar 17, 2010 | |
| Maarten Mennes | Mar 24, 2010 | |
| Alok Deshpande | Jul 30, 2010 | |
| Michael Milham | Aug 3, 2010 | |
| Alok Deshpande | Aug 13, 2010 | |
| Michael Milham | Feb 3, 2010 | |
| Michael Milham | Jan 28, 2010 | |
| Michael Milham | Dec 17, 2009 | |
| Daniel Glen | Dec 17, 2009 | |
