PHILIPS B0 UNWARPING IN FSL FEAT ON SHARK (OR LOCALLY)

Size: px
Start display at page:

Download "PHILIPS B0 UNWARPING IN FSL FEAT ON SHARK (OR LOCALLY)"

Transcription

1 PHILIPS B0 UNWARPING IN FSL FEAT ON SHARK (OR LOCALLY) LATEST VERSION: MARCH, 2017 ANNA VAN T VEER & ANNE HAFKEMEIJER HENK VAN STEENBERGEN & JANNA MARIE BAS-HOOGENDAM This le is updated every now and. Check whether you have the latest version: 1. GETTING STARTED This manual describes how you can use a B0-map scan from for instance the LIBC Philips Achieva scanner to correct for distortions due to B0 inhomogeneities. In other words, putting participants in the scanner messes up the uniform magnetic eld and in places where the signal is displaced it can be brought back to the correct position (if the signal is lost it cannot be recovered, but this fact is also taken into account, see below). FSL recommends using the B0 scan, as it can enhance your analyses at the group level considerably. The scan itself only takes about 1 minute and 5 seconds, so why not use it? This manual will help you construct the required eldmap images for B0 unwarping in FEAT. Once you have used the steps below to verify specic parameters that apply to you, you should be able to things more automated for multiple data sets (e.g., multiple participants), and throughout this manual we therefore include commands that can be run on the SHARK cluster. IMPORTANT NOTE: This manual can only be used on B0 scans that were acquired with parameters that were added to the example examcard on the LIBC scanner after March This means that if you have B0 scans from before that time (in other words, if you copied the B0 scan from the example examcard before that time) you cannot correct for inhomogeneities (for a more detailed explanation ask one of the authors). What you need? - the B0 PAR/REC les of B0 scans that are acquired after March If you have exported only the nii les from the scanner you will probably have partial B0 data and there is likely no way to x this. So always export the PAR/REC les for the B0 scan! - A terminal (and access to SHARK if you want to run this there). - Dcm2nii (already available on SHARK or wnload it here if you run locally: - Parameters from your scans, see under 6. B0 unwarping in FEAT Log in on to the SHARK cluster. Use your usual way of logging into shark, e.g. with mobaxterm (manual available soon here) or with the terminal on a Mac (see ssh cong in the SHARK on a mac manual for a nice way to set this up). Or, if you are in the LUMC, in the terminal, type: $ ssh XY username@ Enter your shark password. If you want to change your password (once in 3 months), use: $ passwd Enter rst your old password, followed by twice your new one. Dcm2nii (version June 1, 2015) is installed on the cluster under: $ /usr/local/bin/dcm2nii If you are working locally, make sure you have the path to where Dcm2nii is installed. 1

2 2. USE DCM2NII TO CONVERT PAR/REC FILES OF A FIRST PARTICIPANT For the following, we assume your B0 les are saved as PAR/REC les in separate subject directories in your project folder. Go to the project folder. In our case: $ cd /data/projecta Within this folder we will use dcm2nii to recode all *.PAR les that include the description B0. Check whether the B0 images are in the folders, for example in folder 004: $ ls 004/*B0*.PAR 004/ProjectA004^^^^_WIP_B0-map_5_1.PAR To convert this le to nii.gz we use the following command: $ /usr/local/bin/dcm2nii -v N -f Y -o./004./004/*b0*.par In the parameters we have dened (from left to right): dicom to nifti converter tool (dcm2nii), not (N) all les in the folder (-v), indicated to keep (Y) the original name in the le name of converted le (-f), the output directory (-o), and the input le. Don t forget using the./ indicating that the paths are relative to the current folder. Let's see what dcm2nii produced. $ ls 004/*B0*.nii.gz 004/ _092455ProjectA004^^^^_WIP_B0-map_5_1WIPB0-maps005a001x1.nii.gz 004/ _092455ProjectA004^^^^_WIP_B0-map_5_1WIPB0-maps005a001x2.nii.gz So, dcm2nii produced two les. 3. CONVERT ALL PAR/REC FILES USING FSL_SUB Let's now convert all B0 les in all subject directories. Don t this on the head node. Rather submit it as a job to the cluster. The easiest way is to call fsl_sub and submit it to any queue (*.q) because conversion is quick and a predened queue is not necessary. So simply add fsl_sub q *.q before copy-pasting the earlier command. $ fsl_sub -q *.q /usr/local/bin/dcm2nii -v N -f Y o./004./004/*b0*.par <fsl_sub gives back jobnumber> Because we would like to the conversion for each subject directory, we will use pipelining statements in combination with the beloved xargs to submit many conversion jobs to the cluster. In Appendix A we explain how you can also this using loops in a bash script. Let's rst get a list of subject directories. Remember: the number of question marks must represent the number of characters of the names of your subject directories! In our case: $ ls d??? We want to pass (pipe) the output of ls to the fsl_sub command mentioned before. For that reason we use xargs. For example: $ ls -d??? xargs -I TODO echo Hello this is directory TODO 2

3 This will call echo repeatedly and put the output of ls in the placeholder text TODO. This will create the following output: Hello this is directory 001 Hello this is directory 002 Hello this is directory 003 ( ) Hello this is directory 028 Hello this is directory 029 Hello this is directory 030 Try this yourself. Let's now apply this to the fsl_sub command. We rst use the echo statement so that it only shows the command and es not execute it. Use the TODO placeholder to replace 004 $ ls -d??? xargs -I TODO echo fsl_sub -q *.q /usr/local/bin/dcm2nii -v N -f Y -o./todo./todo/*b0*.par This should give you the following output: fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./001./001/*b0*.par fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./002./002/*b0*.par fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./003./003/*b0*.par ( ) fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./028./028/*b0*.par fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./029./029/*b0*.par fsl_sub -q *.q /home/username/software/mricron/dcm2nii -f Y -v N -o./030./030/*b0*.par Check whether these are the commands you want to execute. As soon you are sure, just add bash at the end of the previous command to execute it. This will execute fsl_sub and submit all jobs to the cluster. $ ls -d??? xargs -I TODO echo fsl_sub -q *.q /usr/local/bin/dcm2nii -v N -f Y -o./todo./todo/*b0*.par bash Use qstat to check when the conversions are. Check the output log les (e.g. use cat *.o*) and error log les (e.g. use cat *.e*) les in the folder where you submitted the jobs. Remove the output les and error les if you have checked them (e.g ls *.e*; ls *.o*; replace ls with rm if you are sure that you want to remove the les). When all jobs are nished, check whether the converted les have been created. $ ls???/*b0*.nii.gz should give: 001/ _204859ProjectA030^^^^_WIP_B0-map_5_1WIPB0-maps005a001x1.nii.gz 001/ _204859ProjectA030^^^^_WIP_B0-map_5_1WIPB0-maps005a001x2.nii.gz ( ) 030/ _145035ProjectA016^^^^_WIP_B0-map_5_1WIPB0-maps005a001x1.nii.gz 030/ _145035ProjectA016^^^^_WIP_B0-map_5_1WIPB0-maps005a001x2.nii.gz 3

4 4. CHECK CONVERTED FILES Check what the data looks like (see Open the les in fslview 1. In this case the 001x1 le is the magnitude image whereas the 001x2 le is the real eldmap image. For the eldmap image, you may want to play around with the min and max brightness/contrast tools. Rename the les to reflect what type the les are. Only use the command line statements below if you are absolutely sure what you are ing. Otherwise, just the renaming manually. Step 1: rename the 001x1.nii.gz les to B0_magnitude.nii.gz. $ ls -d??? xargs -I TODO echo mv./todo/*b0*001x1.nii.gz./todo/b0_magnitude.nii.gz Check the result. Are you sure you want to this? Add bash at the end of the command to execute it. Step 2. We the same for 001x2 (rename 001x2.nii.gz to B0_realeldmap.nii.gz): $ ls -d??? xargs -I TODO echo mv./todo/*b0*001x2.nii.gz./todo/b0_realeldmap.nii.gz Add bash if you are ready. Check whether the correct les are in the subject folders: $ ls???/b0* should give: 001/B0_magnitude.nii.gz 001/B0_realeldmap.nii.gz ( ) 030/B0_magnitude.nii.gz 030/B0_realeldmap.nii.gz Open the les in fslview (or fsleyes in the future) and check whether they indeed show magnitude and eldmap information respectively (see example below). The eldmap image likely shows negative and positive values (adapt the scale if necessary) and shows inhomogeneities mainly in the inferior regions of the brain. The magnitude images looks more like a structural image and likely only includes positive values. Magnitude image Real eldmap image 1 If this esn t work using the command line, try opening fslview and choosing le, open. 4

5 5. PREPROCESS IMAGES PREPROCESS REAL FIELDMAP IMAGE Following the instructions on we will now process the eldmap to get it in rad/s (Hz) by multiplying the map with 2 * pi: $ fslmaths B0_realeldmap -mul 6.28 B0_eldmap_rads Or to this for all subjects on the cluster: $ ls -d??? xargs -I TODO echo fsl_sub -q *.q fslmaths./todo/b0_realeldmap -mul 6.28./TODO/B0_eldmap_rads Check the result. Are you sure you want to this? Add bash at the end of the command to execute it. Because the eldmap is noisy, we will need some regularization (many options available, see FSL cumentation). We have used median ltering here: $ fugue --loadfmap=b0_eldmap_rads -m --savefmap=b0_eldmap_rads_reg Do this for all subjects in your folder using (this can take a little time): $ ls -d??? xargs -I TODO echo fsl_sub -q *.q fugue -- loadfmap=./todo/b0_eldmap_rads -m --savefmap=./todo/b0_eldmap_rads_reg Add bash if you are ready. PREPROCESS MAGNITUDE IMAGE In order to use the magnitude image in FEAT we need to extract the brain from it: $ bet B0_magnitude B0_magnitude_brain Check whether this worked: $ fslview B0_magnitude B0_magnitude_brain -l Green & Do this for all subjects: $ ls -d??? xargs -I TODO echo fsl_sub -q *.q bet./todo/b0_magnitude./todo/b0_magnitude_brain Check the result. Are you sure you want to this? Add bash at the end of the command to execute it. Check bet for all subjects using fslview: $ ls -d??? xargs -I TODO echo fslview./todo/b0_magnitude./todo/b0_magnitude_brain -l Green Add bash if you are ready. The rst participant will be shown in fslview. Closing the winw will open the next participant, so you can check all betting. If this command esn t work, try opening B0_magnitude via File/Open in fslview and adding B0_magnitude_brain via File/Add. 5

6 Next to betting this magnitude image, we will also erode it (removing one voxel from all edges) as eldmap images contain a noisy rim around the brain. It is advised by the FMRIB experts to stick with the erosion as the safe, albeit conservative, option. $ fslmaths 001/B0_magnitude_brain ero 001/B0_magnitude_brain_ero These are the parameters we have dened (from left to right): the fslmaths tool (fslmaths), the input le (B0_magnitude_brain), the operation (-ero), and the output le (B0_magnitude_brain_ero). This fslmaths function removes noisy voxels at the edge. Check whether this worked: $ fslview 001/B0_magnitude_brain 001/B0_magnitude_brain_ero l Red-Yellow & Do this for all subjects: $ ls -d??? xargs -I TODO echo fsl_sub -q *.q fslmaths./todo/b0_magnitude_brain - ero./todo/b0_magnitude_brain_ero Check the result. Are you sure you want to this? Add bash at the end of the command to execute it. Check what this looks like for all subjects using fslview: $ ls -d??? xargs -I TODO echo fslview./todo/b0_magnitude_brain./todo/b0_magnitude_brain_ero -l Red-Yellow Add bash if you are ready. REMOVE OLD FILES AND RENAME THE _ERO FILE We only want to keep the following nii les: B0_eldmap_rads_reg.nii.gz (needed in FEAT) B0_magnitude.nii.gz (needed in the same folder as the B0_magnitude_brain.nii.gz for FEAT) B0_magnitude_brain_ero.nii.gz rename (see below) to B0_magnitude_brain.nii.gz (needed FEAT) So list the other nii les: $ ls???/b0_realeldmap.nii.gz $ ls???/b0_eldmap_rads.nii.gz $ ls???/b0_magnitude_brain.nii.gz replace ls with rm to remove them! Always keep the PAR/REC les. Rename B0_magnitude_brain_ero.nii.gz to B0_magnitude_brain.nii.gz (needed FEAT) $ mv???/b0_magnitude_brain_ero.nii.gz???/b0_magnitude_brain.nii.gz 6

7 6. B0 UNWARPING IN FEAT We are going to run Feat for each subject using B0 unwarping. Open Feat gui and use your favorite settings. Check whether they are up to date. For example, we have learned that in FSL you should not use an expanded structural image (a high resolution functional scan, often called hires ) in the registration steps if you use whole brain fmri scans. 2 For B0 unwarping, go to tab 'prestat' and check B0 unwarping. Fieldmap = B0_eldmap_rads_reg.nii.gz Fieldmap mag = B0_magnitude_brain.nii.gz Make sure that the B0_magnitude.nii.gz le (so without _brain) is in the same folder (fsl uses this too). We have used the default 10% signal loss threshold. From the FSL website: This determines where the signal loss in the EPI is too great for registration to get a good match between the EPI data and other images. Areas where the % signal loss in the EPI exceeds this threshold will get masked out of the registration process between the EPI and the eldmap and structural images. SET EFFECTIVE ECHO SPACING, EPI TE AND UNWARP DIRECTION. Effective echo spacing. You will need to calculate this value using a formula (please note that the formula we provide here is for 3 Tesla scanners): ( retrieved 28 July 2014): "For Philips Achieva, the best equation for calculating "effective" echo spacing (corrected for accelerated imaging) in milliseconds would seem to be: effective echo spacing = (((1000 * wfs)/( * (etl+1))/acceleration) where wfs is the value of water fat shift in pixels, etl is the echo train length (Philips calls this the epi factor) and acceleration represents the degree of parallel imaging acceleration (SENSE in Philips terminology). Please check these settings at the scanner in the geometry tab of your fmri (see example screenshot below). Remember that these numbers are settings related to your fmri scans (not the B0)! 2 see for a forum question about this. 7

8 You will need: Water fat shift (wfs) EPI factor (echo train length, etl) SENSE p reduction (AP, degree of parallel imaging acceleration, acceleration) EPI TE The water fat shift and EPI factor (echo train length) can also be read from the.par le using geany. $ geany fmri.par & SENSE p reduction can also be found in a text le saved from the scanner exam card. For our particular dataset we got the following values: (Check this data for your own exam card!) Act. WFS (pix) / BW (Hz) = " / 33.4"; EPI factor = 35; SENSE = "yes"; P reduction (AP) = 2.5; Based on these values, we can calculate effective echo spacing (using the Spinoza centre formula): effective echo spacing = (((1000 * wfs)/( * (etl+1))/acceleration) effective echo spacing = (((1000 * )/( * (35+1))/2.5) effective echo spacing = So in the FEAT winws we use effective echo spacing =

9 EPI-TE In addition, based on the exam card info: TE = "user dened"; (ms) = 30; EPI TE (ms) in FEAT was set to 30. Unwarp direction Test both +y and y. The right choice should be identiable in the post-stats section of resulting FEAT report or even better by checking the raw example_func and example_func_orig_distorted images in fslview (instructions below). The example_func should be horizontally squeezed rather than stretched. See the examples on next pages! In our case we have set unwarp direction to +y. In the results with the +y direction, the visible structures are generally well aligned (e.g. ventricles, cerebellum, frontal lobes) except in some areas near air, but this is due to signal loss in the functional images that cannot be corrected for by unwarping. So you cannot evaluate the accuracy of the registrations by looking in these regions, as the signal loss means that the borders are not anatomical borders but articial ones created by signal loss. We recommend that you have a closer look at this result, taking into account the issue with the signal loss, and see if it looks accurate in the areas away from the signal loss (which will be in the inferior frontal and temporal lobes). Run your own registration with unwarping (remember to leave out the hires scan in the registration tab!) and the following to check your results: - In fslview, open (from the reg folder) the highres.nii.gz scan (this is your structural image) and add example_func2highres.nii.gz - Add the example_func2highres_fast_wmedge.nii.gz, and click the i (information icon in lower part of fslview) while this image is selected in order to change the color from greyscale to red (select the color under Lookup table options in the winw that opens after clicking the information icon). Carefully check whether the red lines are corresponding to the anatomical borders. - Select the example_func2highres image and use the transparency slider (located below the eld where you select the images) to slowly see the highres image (remember you opened that one rst, so it was hiding below the other images). This should enable you to see whether the scans are aligned (the red lines are derived from the highres scan, so this should give you similar conclusions). - Then add from the unwarp folder within the reg folder the image called example_func_distorted2highres, this shows you the uncorrected registration result. Play around with which image is on top: es the example_func2highres t better on the anatomical brain than the example_func_distorted2highres? If yes, using the B0 map was a good idea. If the frontal lobe and the occipital lobe of your functional data (example_func) get pushed inwards (this is likely to happen due to unwarping), make sure they not go more inwards than where you know the brain boundaries are by looking at the structural brain (use the transparency slider to see whether the uncorrected or the corrected ts better on the hires). - If you ran this registration twice, once with +y and once with y (well!), open the same les for the other y-direction in another fslview winw so you can compare the results. When comparing the images, remember to choose the same x,y,z values (although the images may still look a little different due to the correction off course) and to set the transparency the same (for all example_func2highres images so the structural scan will show equally). Below you can see an example of an uncorrected fmri scan and a corrected scan. Notice how in the corrected scan the red lines (the structural borders) align better with tissue changes, such as around the csf. 9

10 Uncorrected: Corrected (notice how the area s indicated by the arrows improve in this image): In your report, go to Registration, Unwarping. Have a look at the gif at the bottom of the page. You might get a grey image for the distorted (or for both scans). We have checked this with the fsl people and their answer was that this is just the gif that is incorrect; it is probably because the automatic intensity scaling has gone wrong in the image generation tool. This esn t affect your analyses, just this illustration for the webpage. From this gif you might already see that the B0 correction improved your scans, but it is always better to look at the images as described above (i.e., with fslview). 10

11 APPENDIX A. EXAMPLE OF PREPROCESSING B0 MAPS WITH LOOPS IN A BASH SCRIPT For a variety of reasons, you might want to use loops in your bash script when preprocessing the B0 maps, instead of the one-liners (using pipes and xargs) used in the cumentation above. One example might be that you want to rename all your les using a participant ID that is in a folder name (e.g., the folder is called ID001 and the scan inside it esn t have a unique ID but you want it to be named using the folder name). Another example is that using a loop may be a useful way of ing the preprocessing on new data that has come in, without re-ing the old data again. In other words, you could ask the loop to see if a certain le already exists (say, the preprocessed eldmap) and IF there is no such le for a certain participant THEN to go ahead and start preprocessing the raw les. Below we provide an example of scripts that all the B0 preprocessing steps in loops. Please be careful when using these as you should always make sure you know what you are ing (n t just mindlessly copy and paste!). In this example, we have the data for participant (PP) 001 in the following two session folders: Data/ProjectA/001/SESSION1 Data/ProjectA/001/SESSION2 Specify the interpreter you want to run the following commands with. $ #!/bin/bash Set the directory. $ DIR=/Users/Data/ProjectA For each participant (PP) in the participants list (i.e., all subfolders in ProjectA, *), and for both the sessions of these participants (i.e., the subfolders within the subfolders in ProjectA, which are named SESSION1 and SESSION2 in our example), the following: see if the *001x* le (one of the converted par les) is not there yet, and if the le is not there (! f), convert the *B0*.PAR le (convert the le that has B0 somewhere in the name and ends in.par). #if no converted les exist, convert the par if [! -f $DIR/$PP/$SESSION/*001x* ] /APPlications/mricron/dcm2nii -v N -f Y -o $DIR/$PP/$SESSION $DIR/$PP/$SESSION/*B0*.PAR Rename the new les. DIR=/Users/Data/ProjectA if [! -f $DIR/$PP/$SESSION/B0_magnitude ] mv $DIR/$PP/$SESSION/*B0*001x1.nii.gz $DIR/$PP/$SESSION/B0_magnitude.nii.gz if [! -f $DIR/$PP/$SESSION/B0_realeldmap ] mv $DIR/$PP/$SESSION/*B0*001x2.nii.gz $DIR/$PP/$SESSION/B0_realeldmap.nii.gz 11

12 Make the eldmap in rad/s. DIR=/Users/Data/ProjectA if [! -f $DIR/$PP/$SESSION/B0_eldmap_rads ] mv fslmaths $DIR/$PP/$SESSION/B0_realeldmap -mul 6.28 $DIR/$PP/$SESSION/B0_eldmap_rads Regularize the eldmap. DIR=/Users/Data/ProjectA if [! -f $DIR/$PP/$SESSION/B0_eldmap_rads_reg ] fugue --loadfmap=$dir/$pp/$session/b0_eldmap_rads -m -- savefmap=$dir/$pp/$session/b0_eldmap_rads_reg Erode the magnitude image. DIR=/Users/Data/ProjectA if [! -f $DIR/$PP/$SESSION/B0_magnitude_brain_ero ] fslmaths $DIR/$PP/$SESSION/B0_magnitude_brain -ero $DIR/$PP/$SESSION/B0_magnitude_brain_ero Remove unneeded les; rst list the les for removal (should be B0_realeldmap.nii.gz, B0_eldmap_rads.nii.gz, B0_magnitude_brain.nii.gz) and delete if you are sure. DIR=/Users/Data/ProjectA if [ -f $DIR/$PP/$SESSION/B0_magnitude_brain_ero ] ls $DIR/$PP/$SESSION/B0_realeldmap.nii.gz ls $DIR/$PP/$SESSION/B0_eldmap_rads.nii.gz ls $DIR/$PP/$SESSION/B0_magnitude_brain 12

13 Sure? DIR=/Users/Data/ProjectA if [ -f $DIR/$PP/$SESSION/B0_magnitude_brain_ero ] rm $DIR/$PP/$SESSION/B0_realeldmap.nii.gz rm $DIR/$PP/$SESSION/B0_eldmap_rads.nii.gz rm $DIR/$PP/$SESSION/B0_magnitude_brain Rename the B0_magnitude_brain_ero le to B0_magnitude_brain. DIR=/Users/Data/ProjectA if [ -f $DIR/$PP/$SESSION/B0_magnitude_brain_ero ] mv $DIR/$PP/$SESSION/B0_magnitude_brain_ero.nii.gz $DIR/$PP/$SESSION/B0_magnitude_brain.nii.gz If you are happy with the above loops, you can submit them on SHARK by putting your loops in a.sh le and submitting that using qsub: $ qsub B0loople.sh This is an example of what is in your B0loople.sh (replace the blue text with your chosen script name / address): #!/bin/bash #$ -S /bin/bash #$ -q all.q #$ -N script_par_convert #$ -cwd #$ -j Y #$ -V #$ -m be #$ -M username@fsw.leidenuniv.nl DIR=/exports/fsw/ProjectA #if no converted les exist, convert the par if [! -f $DIR/$PP/$SESSION/*001x* ] /Applications/mricron/dcm2nii -v N -f Y -o $DIR/$PP/$SESSION $DIR/$PP/$SESSION/*B0*.PAR Check your to see if the job is, or use qstat if you are impatient and want to see if it s running already. Then use cat script*.e* to see if running the script had any errors. 13

14 APPENDIX B. ADDITIONAL EXAMCARD INFORMATION: CONFIGURING THE B0 SCAN If you are setting up your examcard and want to add the B0 map, there is an example scan in the example les that the LIBC uses. If you want to check your own scan, pay attention to the following settings: 1) Set the shimming to auto (see picture below): the same shimming is used as in the fmri scans (e.g., your task data). 2) Set the scan to fmri (see picture below); this will ensure the eld of view is the same as in your fmri scans, which is the same fov that you want to the correction in, so this is preferable (although bigger fov boxes cannot hurt). 3) You can best perform the B0 scan after the functional scans that you want to correct (this way you are sure that settings are the same). If you have different goals, such as ing a B0 map scan on a 7 tesla for testing purposes instead of correction purposes, you might want to the exact opposite: a B0 map rst and set the shim to default (consult your technician if you are not sure what your best options are). 14

Playing with data from lab

Playing with data from lab Playing with data from lab Getting data off the scanner From the Patient Browser, select the folder for the study you want (or within that study, the set of images you want), and then from the Transfer

More information

Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification

Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification The FMRIB Software Library (FSL) is a powerful tool that allows users to observe the human brain in various planes and dimensions,

More information

Brain Extraction, Registration & EPI Distortion Correction

Brain Extraction, Registration & EPI Distortion Correction Brain Extraction, Registration & EPI Distortion Correction What use is Registration? Some common uses of registration: Combining across individuals in group studies: including fmri & diffusion Quantifying

More information

Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification

Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification Structural MRI of Amygdala Tutorial: Observation, Segmentation, Quantification The FMRIB Software Library (FSL) is a powerful tool that allows users to observe the human brain in various planes and dimensions,

More information

FSL Workshop Session 3 David Smith & John Clithero

FSL Workshop Session 3 David Smith & John Clithero FSL Workshop 12.09.08 Session 3 David Smith & John Clithero What is MELODIC? Probabilistic ICA Improves upon standard ICA Allows for inference Avoids over-fitting Three stage process ( ppca ) 1.) Dimension

More information

2. Creating Field Maps Using the Field Map GUI (Version 2.0) in SPM5

2. Creating Field Maps Using the Field Map GUI (Version 2.0) in SPM5 1. Introduction This manual describes how to use the Field Map Toolbox Version 2.0 for creating unwrapped field maps that can be used to do geometric distortion correction of EPI images in SPM5. 1. 1.

More information

Table of Contents. IntroLab < SPMLabs < Dynevor TWiki

Table of Contents. IntroLab < SPMLabs < Dynevor TWiki Table of Contents Lab 1: Introduction to SPM and data checking...1 Goals of this Lab...1 Prerequisites...1 An SPM Installation...1 SPM Defaults...2 L/R Brain Orientation...2 Memory Use for Data Processing...2

More information

Analysis of fmri data within Brainvisa Example with the Saccades database

Analysis of fmri data within Brainvisa Example with the Saccades database Analysis of fmri data within Brainvisa Example with the Saccades database 18/11/2009 Note : All the sentences in italic correspond to informations relative to the specific dataset under study TP participants

More information

An Introduction to Cluster Computing Using Newton

An Introduction to Cluster Computing Using Newton An Introduction to Cluster Computing Using Newton Jason Harris and Dylan Storey March 25th, 2014 Jason Harris and Dylan Storey Introduction to Cluster Computing March 25th, 2014 1 / 26 Workshop design.

More information

Group (Level 2) fmri Data Analysis - Lab 4

Group (Level 2) fmri Data Analysis - Lab 4 Group (Level 2) fmri Data Analysis - Lab 4 Index Goals of this Lab Before Getting Started The Chosen Ten Checking Data Quality Create a Mean Anatomical of the Group Group Analysis: One-Sample T-Test Examine

More information

Carestream Vita user quick guide. Software version 3.2 From April 2012

Carestream Vita user quick guide. Software version 3.2 From April 2012 Carestream Vita user quick guide Software version 3.2 From April 2012 1 Carestream Vita user quick guide Software version 3.2 from April 2012 1. To switch your Vita on Press the power button on the PC

More information

Shark Cluster Overview

Shark Cluster Overview Shark Cluster Overview 51 Execution Nodes 1 Head Node (shark) 1 Graphical login node (rivershark) 800 Cores = slots 714 TB Storage RAW Slide 1/14 Introduction What is a cluster? A cluster is a group of

More information

Introduction to MRI data processing with FSL. Anna Blazejewska

Introduction to MRI data processing with FSL. Anna Blazejewska Introduction to MRI data processing with FSL Anna Blazejewska FSL = FMRIB Software Library FMRIB = Functional Magnetic Resonance Imaging of the Brain @ Oxford since 2000, last stable FSL 5.0, free! for

More information

Fmri Spatial Processing

Fmri Spatial Processing Educational Course: Fmri Spatial Processing Ray Razlighi Jun. 8, 2014 Spatial Processing Spatial Re-alignment Geometric distortion correction Spatial Normalization Smoothing Why, When, How, Which Why is

More information

fmri Basics: Spatial Pre-processing Workshop

fmri Basics: Spatial Pre-processing Workshop fmri Basics: Spatial Pre-processing Workshop Starting a VNC session: Most of your fmri analysis will be done on the central Linux machines accessed via a VNC (Virtual Network Computing) server. This is

More information

FSL Pre-Processing Pipeline

FSL Pre-Processing Pipeline The Art and Pitfalls of fmri Preprocessing FSL Pre-Processing Pipeline Mark Jenkinson FMRIB Centre, University of Oxford FSL Pre-Processing Pipeline Standard pre-processing: Task fmri Resting-state fmri

More information

fmri/dti analysis using Dynasuite

fmri/dti analysis using Dynasuite fmri/dti analysis using Dynasuite Contents 1 Logging in 2 Finding patient session 3 Viewing and adjusting images 4 Checking brain segmentation 5 Checking image registration 6 Seeing fmri results 7 Saving

More information

ASAP_2.0 (Automatic Software for ASL Processing) USER S MANUAL

ASAP_2.0 (Automatic Software for ASL Processing) USER S MANUAL ASAP_2.0 (Automatic Software for ASL Processing) USER S MANUAL ASAP was developed as part of the COST Action "Arterial Spin Labelling Initiative in Dementia (AID)" by: Department of Neuroimaging, Institute

More information

Automated MR Image Analysis Pipelines

Automated MR Image Analysis Pipelines Automated MR Image Analysis Pipelines Andy Simmons Centre for Neuroimaging Sciences, Kings College London Institute of Psychiatry. NIHR Biomedical Research Centre for Mental Health at IoP & SLAM. Neuroimaging

More information

Sources of Distortion in Functional MRI Data

Sources of Distortion in Functional MRI Data Human Brain Mapping 8:80 85(1999) Sources of Distortion in Functional MRI Data Peter Jezzard* and Stuart Clare FMRIB Centre, Department of Clinical Neurology, University of Oxford, Oxford, UK Abstract:

More information

Carnegie Mellon. Linux Boot Camp. Jack, Matthew, Nishad, Stanley 6 Sep 2016

Carnegie Mellon. Linux Boot Camp. Jack, Matthew, Nishad, Stanley 6 Sep 2016 Linux Boot Camp Jack, Matthew, Nishad, Stanley 6 Sep 2016 1 Connecting SSH Windows users: MobaXterm, PuTTY, SSH Tectia Mac & Linux users: Terminal (Just type ssh) andrewid@shark.ics.cs.cmu.edu 2 Let s

More information

Contents. Last updated: 18 th August 2017

Contents. Last updated: 18 th August 2017 DRM Lite in Firefox DRM Lite is the new way for British Library to deliver electronic documents securely. When a document is requested via this service the document is locked so that only one user can

More information

Georeferencing and Digitizing

Georeferencing and Digitizing INTRODUCTION There is a great deal of geographic data available in formats that cannot be immediately integrated with other GIS data. In order to use these types of data in GIS it is necessary to align

More information

for Q-CHECKER Text version 15-Feb-16 4:49 PM

for Q-CHECKER Text version 15-Feb-16 4:49 PM Q-MONITOR 5.4.X FOR V5 for Q-CHECKER USERS GUIDE Text version 15-Feb-16 4:49 PM Orientation Symbols used in the manual For better orientation in the manual the following symbols are used: Warning symbol

More information

A Hands-On Tutorial: RNA Sequencing Using High-Performance Computing

A Hands-On Tutorial: RNA Sequencing Using High-Performance Computing A Hands-On Tutorial: RNA Sequencing Using Computing February 11th and 12th, 2016 1st session (Thursday) Preliminaries: Linux, HPC, command line interface Using HPC: modules, queuing system Presented by:

More information

New User Tutorial. OSU High Performance Computing Center

New User Tutorial. OSU High Performance Computing Center New User Tutorial OSU High Performance Computing Center TABLE OF CONTENTS Logging In... 3-5 Windows... 3-4 Linux... 4 Mac... 4-5 Changing Password... 5 Using Linux Commands... 6 File Systems... 7 File

More information

BDP: BrainSuite Diffusion Pipeline. Chitresh Bhushan

BDP: BrainSuite Diffusion Pipeline. Chitresh Bhushan BDP: BrainSuite Diffusion Pipeline Chitresh Bhushan Why diffusion MRI? T 2 weighted MPRAGE FA map Fiber track Quantify microstructural tissue characteristics Structural connectivity Connectome Clinical

More information

Measuring baseline whole-brain perfusion on GE 3.0T using arterial spin labeling (ASL) MRI

Measuring baseline whole-brain perfusion on GE 3.0T using arterial spin labeling (ASL) MRI Measuring baseline whole-brain perfusion on GE 3.0T using arterial spin labeling (ASL) MRI Revision date: 09/15/2008 Overview This document describes the procedure for measuring baseline whole-brain perfusion

More information

Single Subject Demo Data Instructions 1) click "New" and answer "No" to the "spatially preprocess" question.

Single Subject Demo Data Instructions 1) click New and answer No to the spatially preprocess question. (1) conn - Functional connectivity toolbox v1.0 Single Subject Demo Data Instructions 1) click "New" and answer "No" to the "spatially preprocess" question. 2) in "Basic" enter "1" subject, "6" seconds

More information

Philips MRI Protocol Dump Created on Comment Software Stream

Philips MRI Protocol Dump Created on Comment Software Stream Page 1 of 5 Philips MRI Protocol Dump Created on 2/17/2011 4:11:01 PM Comment Created by ExamCard_to_XML with inputs: "J:\ADNI GO - ADNI 2 Phantom5.ExamCard" on system (BU SCHOOL OF MEDICINE :: 192.168.71.10)

More information

NBIC TechTrack PBS Tutorial

NBIC TechTrack PBS Tutorial NBIC TechTrack PBS Tutorial by Marcel Kempenaar, NBIC Bioinformatics Research Support group, University Medical Center Groningen Visit our webpage at: http://www.nbic.nl/support/brs 1 NBIC PBS Tutorial

More information

Marks Management & ScanExam Introduction

Marks Management & ScanExam Introduction Marks Management & ScanExam Introduction 1. Install Marks Management Software (MMS) and ScanExam First uninstall your old version of MMS. Then, use a web browser to visit ssnds.uwo.ca/softwaredownloads.html

More information

Slicer3 Tutorial: Registration Library Case 14. Intra-subject Brain PET-MRI fusion

Slicer3 Tutorial: Registration Library Case 14. Intra-subject Brain PET-MRI fusion NA-MIC Slicer3 Tutorial: Registration Library Case 14 Intra-subject Brain PET-MRI fusion Dominik Meier, Ron Kikinis March 2010 Overview 1. Introduction 2. Prerequisites 3. Modules Used takes how long to

More information

Introduction to Linux

Introduction to Linux Introduction to Linux The command-line interface A command-line interface (CLI) is a type of interface, that is, a way to interact with a computer. Window systems, punched cards or a bunch of dials, buttons

More information

Introduction to Linux and Supercomputers

Introduction to Linux and Supercomputers Introduction to Linux and Supercomputers Doug Crabill Senior Academic IT Specialist Department of Statistics Purdue University dgc@purdue.edu What you will learn How to log into a Linux Supercomputer Basics

More information

Outlook Integration Guide

Outlook Integration Guide PracticeMaster Outlook Integration Guide Copyright 2012-2015 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 Tabs3.com Tabs3, PracticeMaster, and the "pinwheel" symbol ( )

More information

When you first log in, you will be placed in your home directory. To see what this directory is named, type:

When you first log in, you will be placed in your home directory. To see what this directory is named, type: Chem 7520 Unix Crash Course Throughout this page, the command prompt will be signified by > at the beginning of a line (you do not type this symbol, just everything after it). Navigation When you first

More information

ACQUIRING AND PROCESSING SUSCEPTIBILITY WEIGHTED IMAGING (SWI) DATA ON GE 3.0T

ACQUIRING AND PROCESSING SUSCEPTIBILITY WEIGHTED IMAGING (SWI) DATA ON GE 3.0T ACQUIRING AND PROCESSING SUSCEPTIBILITY WEIGHTED IMAGING (SWI) DATA ON GE 3.0T Revision date: 12/13/2010 Overview Susceptibility Weighted Imaging (SWI) is a relatively new data acquisition and processing

More information

Introduction to fmri. Pre-processing

Introduction to fmri. Pre-processing Introduction to fmri Pre-processing Tibor Auer Department of Psychology Research Fellow in MRI Data Types Anatomical data: T 1 -weighted, 3D, 1/subject or session - (ME)MPRAGE/FLASH sequence, undistorted

More information

BDP: BrainSuite Diffusion Pipeline. Chitresh Bhushan

BDP: BrainSuite Diffusion Pipeline. Chitresh Bhushan BDP: BrainSuite Diffusion Pipeline Chitresh Bhushan Why diffusion MRI? T 2 weighted MPRAGE FA map Fiber track Quantify microstructural tissue characteristics Structural connectivity Connectome Clinical

More information

RDAV Tutorial: Hands-on with VisIt on Nautilus If you want to work hands-on, you will need to install VisIt and

RDAV Tutorial: Hands-on with VisIt on Nautilus  If you want to work hands-on, you will need to install VisIt and RDAV Tutorial: Hands-on with VisIt on Nautilus http://rdav.nics.tennessee.edu/ If you want to work hands-on, you will need to install VisIt and register a password token. The data that we are using today

More information

Assignment 3, Due October 4

Assignment 3, Due October 4 Assignment 3, Due October 4 1 Summary This assignment gives you practice with writing shell scripts. Shell scripting is also known as bash programming. Your shell is bash, and when you write a shell script

More information

CS 2505 Computer Organization I Test 1

CS 2505 Computer Organization I Test 1 Instructions: Print your name in the space provided below. This examination is closed book and closed notes, aside from the permitted one-page formula sheet. No calculators or other computing devices may

More information

Tutorial BOLD Module

Tutorial BOLD Module m a k i n g f u n c t i o n a l M R I e a s y n o r d i c B r a i n E x Tutorial BOLD Module Please note that this tutorial is for the latest released nordicbrainex. If you are using an older version please

More information

fmri pre-processing Juergen Dukart

fmri pre-processing Juergen Dukart fmri pre-processing Juergen Dukart Outline Why do we need pre-processing? fmri pre-processing Slice time correction Realignment Unwarping Coregistration Spatial normalisation Smoothing Overview fmri time-series

More information

VXRE Reconstruction Software Manual

VXRE Reconstruction Software Manual VXRE Reconstruction Software Manual Version 1.7.8 3D INDUSTRIAL IMAGING 3D Industrial Imaging Co.,Ltd. Address :#413 Institute of Computer Technology, Seoul National University, Daehak-dong, Gwanak-gu,

More information

ChIP-seq Analysis Practical

ChIP-seq Analysis Practical ChIP-seq Analysis Practical Vladimir Teif (vteif@essex.ac.uk) An updated version of this document will be available at http://generegulation.info/index.php/teaching In this practical we will learn how

More information

Talend Data Preparation Free Desktop. Getting Started Guide V2.1

Talend Data Preparation Free Desktop. Getting Started Guide V2.1 Talend Data Free Desktop Getting Guide V2.1 1 Talend Data Training Getting Guide To navigate to a specific location within this guide, click one of the boxes below. Overview of Data Access Data And Getting

More information

Normalization for clinical data

Normalization for clinical data Normalization for clinical data Christopher Rorden, Leonardo Bonilha, Julius Fridriksson, Benjamin Bender, Hans-Otto Karnath (2012) Agespecific CT and MRI templates for spatial normalization. NeuroImage

More information

General Pharmaceutical Council. CPDOnline User Guide. continuing DEVELOPMENT. March 2018

General Pharmaceutical Council. CPDOnline User Guide. continuing DEVELOPMENT. March 2018 General Pharmaceutical Council CPDOnline User Guide continuing DEVELOPMENT March 2018 Contents About us About this guide Introduction to CPDOnline 1. Getting started: System requirements 2. Logging in

More information

Csci 132 Spring 13. Assignment 2 Due: Tuesday, March 5 (by 11:59PM)

Csci 132 Spring 13. Assignment 2 Due: Tuesday, March 5 (by 11:59PM) Csci 132 Spring 13 Assignment 2 Due: Tuesday, March 5 (by 11:59PM) A. Readings Read and understand this part before starting working on the exercises of part B. Variables In a Bash script a variable can

More information

FSL Pre-Processing Pipeline

FSL Pre-Processing Pipeline The Art and Pitfalls of fmri Preprocessing FSL Pre-Processing Pipeline Mark Jenkinson FMRIB Centre, University of Oxford FSL Pre-Processing Pipeline Standard pre-processing: Task fmri Resting-state fmri

More information

4. TROUBLESHOOTING PREVIOUS VERSIONS RUN LOLITRACK ALWAYS AS ADMIN WIBU SOFTWARE PROTECTION... 30

4. TROUBLESHOOTING PREVIOUS VERSIONS RUN LOLITRACK ALWAYS AS ADMIN WIBU SOFTWARE PROTECTION... 30 Version 4.2.0 CONTENTS 1. GETTING STARTED... 2 2. TYPICAL APPLICATIONS... 4 3. USER GUIDE... 5 3.1 SINGLE OBJECT MODE... 7 3.2 SINGLE ARENA MODE... 12 3.3 EVENT RECORDER... 19 3.4 BATCH TRACKING... 21

More information

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Volvo Car Remarketing Services Online Portal User Guide

Volvo Car Remarketing Services Online Portal User Guide Volvo Car Remarketing Services Online Portal User Guide Rev V1 - July 2016 Quick Start Guide 1. Open your username & password email 2. Website link double click on the Internet Explorer icon in the bottom

More information

Make sure the parameter expansion is quoted properly. It may not be necessary here, but it is good practice.

Make sure the parameter expansion is quoted properly. It may not be necessary here, but it is good practice. Master solutions Your rst script echo 'Hello, World! ' Count to 100 Make sure the parameter expansion is quoted properly. It may not be necessary here, but it is good practice. for i in {1..100} echo "$i"

More information

SIVIC GUI Overview. SIVIC GUI Layout Overview

SIVIC GUI Overview. SIVIC GUI Layout Overview SIVIC GUI Overview SIVIC GUI Layout Overview At the top of the SIVIC GUI is a row of buttons called the Toolbar. It is a quick interface for loading datasets, controlling how the mouse manipulates the

More information

CS 2505 Computer Organization I Test 1

CS 2505 Computer Organization I Test 1 Instructions: Print your name in the space provided below. This examination is closed book and closed notes, aside from the permitted one-page formula sheet. No calculators or other computing devices may

More information

Shark Cluster Overview

Shark Cluster Overview Shark Cluster Overview 51 Execution Nodes 1 Head Node (shark) 2 Graphical login nodes 800 Cores = slots 714 TB Storage RAW Slide 1/17 Introduction What is a High Performance Compute (HPC) cluster? A HPC

More information

User s Guide Neuroimage Processing ToolKit (NPTK) Version.1.7 (beta) fmri Registration Software Pipeline for Functional Localization

User s Guide Neuroimage Processing ToolKit (NPTK) Version.1.7 (beta) fmri Registration Software Pipeline for Functional Localization User s Guide Neuroimage Processing ToolKit (NPTK) Version.1.7 (beta) fmri Registration Software Pipeline for Functional Localization Software Written by Ali Gholipour SIP Lab, UTD, 2005-2007 Revision 1.7

More information

Text version 15-Aug-12. for Q-CHECKER V4, V5 and V6

Text version 15-Aug-12. for Q-CHECKER V4, V5 and V6 Text version 15-Aug-12 Q-MONITOR V4 for Q-CHECKER V4, V5 and V6 USERS GUIDE Orientation Symbols used in the manual For better orientation in the manual the following symbols are used: Warning symbol Tip

More information

Introduction to Linux for BlueBEAR. January

Introduction to Linux for BlueBEAR. January Introduction to Linux for BlueBEAR January 2019 http://intranet.birmingham.ac.uk/bear Overview Understanding of the BlueBEAR workflow Logging in to BlueBEAR Introduction to basic Linux commands Basic file

More information

Name Department/Research Area Have you used the Linux command line?

Name Department/Research Area Have you used the Linux command line? Please log in with HawkID (IOWA domain) Macs are available at stations as marked To switch between the Windows and the Mac systems, press scroll lock twice 9/27/2018 1 Ben Rogers ITS-Research Services

More information

Microsoft Expression Web is usually obtained as a program within Microsoft Expression Studio. This tutorial deals specifically with Versions 3 and 4,

Microsoft Expression Web is usually obtained as a program within Microsoft Expression Studio. This tutorial deals specifically with Versions 3 and 4, Microsoft Expression Web is usually obtained as a program within Microsoft Expression Studio. This tutorial deals specifically with Versions 3 and 4, which are very similar in most respects and the important

More information

Windows 10: Part 2. Updated: May 2018 Price: $1.80

Windows 10: Part 2. Updated: May 2018 Price: $1.80 Windows 10: Part 2 Updated: May 2018 Price: $1.80 A Special Note on Terminology Windows 10 accepts both mouse and touch commands. This means that you could either use mouse clicks or touch gestures interchangeably.

More information

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011)

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011) UoW HPC Quick Start Information Technology Services University of Wollongong ( Last updated on October 10, 2011) 1 Contents 1 Logging into the HPC Cluster 3 1.1 From within the UoW campus.......................

More information

CHAPTER 9: Magnetic Susceptibility Effects in High Field MRI

CHAPTER 9: Magnetic Susceptibility Effects in High Field MRI Figure 1. In the brain, the gray matter has substantially more blood vessels and capillaries than white matter. The magnified image on the right displays the rich vasculature in gray matter forming porous,

More information

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab Basic Terminal Intro to Linux ssh short for s ecure sh ell usage: ssh [host]@[computer].[otheripstuff] for lab computers: ssh [CSID]@[comp].cs.utexas.edu can get a list of active computers from the UTCS

More information

CATNAP User Manual v1.0

CATNAP User Manual v1.0 CATNAP User Manual v1.0 July 6, 2006 Nera-Lee Patel and Bennett Landman Note: Items in green text are only sample value. Your values may be different. I. CreateParManifest -- Creates a spreadsheet to show

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

Lab 4: Shell Scripting

Lab 4: Shell Scripting Lab 4: Shell Scripting Nathan Jarus June 12, 2017 Introduction This lab will give you some experience writing shell scripts. You will need to sign in to https://git.mst.edu and git clone the repository

More information

Lutheran High North Technology The Finder

Lutheran High North Technology  The Finder Lutheran High North Technology shanarussell@lutheranhighnorth.org www.lutheranhighnorth.org/technology The Finder Your Mac s filing system is called the finder. In this document, we will explore different

More information

CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment

CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment This document guides you through setting up Eclipse for CSE 332. The first section covers using gitlab to access

More information

CS CS Tutorial 2 2 Winter 2018

CS CS Tutorial 2 2 Winter 2018 CS CS 230 - Tutorial 2 2 Winter 2018 Sections 1. Unix Basics and connecting to CS environment 2. MIPS Introduction & CS230 Interface 3. Connecting Remotely If you haven t set up a CS environment password,

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5 CS/NEUR125 Brains, Minds, and Machines Lab 8: Using fmri to Discover Language Areas in the Brain Due: Wednesday, April 5 In this lab, you will analyze fmri data from an experiment that was designed to

More information

PANDA Manual Zaixu Cui & Suyu Zhong & Gaolang Gong

PANDA Manual Zaixu Cui & Suyu Zhong & Gaolang Gong PANDA Manual Zaixu Cui & Suyu Zhong & Gaolang Gong National Key Laboratory of Cognitive Neuroscience and Learning Beijing Normal University, China Contents Overview Setup Files/Directories selection Preparing

More information

Creating and Managing Surveys

Creating and Managing Surveys S Computing Services Department Creating and Managing Surveys Select Survey Apr 2016 Page 0 of 27 U n i v e r s i t y o f L i v e r p o o l Table of Contents 1. Introduction... 2 2. How to Access the Survey

More information

V-CUBE Sales & Support. User Manual

V-CUBE Sales & Support. User Manual V-CUBE Sales & Support User Manual V-cube, Inc. 2013/12/20 This document is the user manual for V-CUBE Sales & Support. 2013 V-cube, Inc. All Rights Reserved. Revision history Revision date Details 2013/12/20

More information

EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015

EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015 EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015 Practical 4: Optional part for experienced IMOD users - Reconstructing a cryo tomogram and sub-tomogram averaging of GroEL IMOD

More information

How to create a head model

How to create a head model How to create a head model This document describes the command line tools: mri2mesh: Central tool to reconstruct a head model from T1w and T2w data dwi2cond: Reconstruct conductivity tensors for brain

More information

CHAPTER 2. Morphometry on rodent brains. A.E.H. Scheenstra J. Dijkstra L. van der Weerd

CHAPTER 2. Morphometry on rodent brains. A.E.H. Scheenstra J. Dijkstra L. van der Weerd CHAPTER 2 Morphometry on rodent brains A.E.H. Scheenstra J. Dijkstra L. van der Weerd This chapter was adapted from: Volumetry and other quantitative measurements to assess the rodent brain, In vivo NMR

More information

Outlook Integration Guide

Outlook Integration Guide Tabs3 Billing PracticeMaster General Ledger Accounts Payable Trust Accounting TA BS3.COM PracticeMaster Outlook Integration Guide Copyright 2012-2018 Software Technology, LLC 1621 Cushman Drive Lincoln,

More information

COBRE Scan Information

COBRE Scan Information COBRE Scan Information Below is more information on the directory structure for the COBRE imaging data. Also below are the imaging parameters for each series. Directory structure: var/www/html/dropbox/1139_anonymized/human:

More information

Stroke Quantification Tool (Sonia) Ver User Manual

Stroke Quantification Tool (Sonia) Ver User Manual Stroke Quantification Tool (Sonia) Ver. 1.0 User Manual English. 12/2016 Rev. 1.0 www.wakeup-stroke.eu 1 Table of Contents 1. Introduction...3 2. Installation...4 3. Data Import...5 4. Registration...7

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

DIGITAL IDENTITY MANAGEMENT Temple Community Platform DIGITAL IDENTITY MANAGEMENT Temple Community Platform Digital identity is what uniquely describes a person and their relationships online. Most of us today are experts in social identity management (e.g.,

More information

Rat 2D EPSI Dual Band Variable Flip Angle 13 C Dynamic Spectroscopy

Rat 2D EPSI Dual Band Variable Flip Angle 13 C Dynamic Spectroscopy Rat 2D EPSI Dual Band Variable Flip Angle 13 C Dynamic Spectroscopy In this example you will load a dynamic MRS animal data set acquired on a GE 3T scanner. This data was acquired with an EPSI sequence

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Version 2.5 for BVQX 1.9 Rainer Goebel, Henk Jansma and Jochen Seitz Copyright 2007 Brain Innovation B.V. 2 Contents Preface...4 The Objects Tutorial...5 Scanning session information...5

More information

Using CLC Genomics Workbench on Turing

Using CLC Genomics Workbench on Turing Using CLC Genomics Workbench on Turing Table of Contents Introduction...2 Accessing CLC Genomics Workbench...2 Launching CLC Genomics Workbench from your workstation...2 Launching CLC Genomics Workbench

More information

Using ISMLL Cluster. Tutorial Lec 5. Mohsan Jameel, Information Systems and Machine Learning Lab, University of Hildesheim

Using ISMLL Cluster. Tutorial Lec 5. Mohsan Jameel, Information Systems and Machine Learning Lab, University of Hildesheim Using ISMLL Cluster Tutorial Lec 5 1 Agenda Hardware Useful command Submitting job 2 Computing Cluster http://www.admin-magazine.com/hpc/articles/building-an-hpc-cluster Any problem or query regarding

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

More information

syngo.mr Neuro 3D: Your All-In-One Post Processing, Visualization and Reporting Engine for BOLD Functional and Diffusion Tensor MR Imaging Datasets

syngo.mr Neuro 3D: Your All-In-One Post Processing, Visualization and Reporting Engine for BOLD Functional and Diffusion Tensor MR Imaging Datasets syngo.mr Neuro 3D: Your All-In-One Post Processing, Visualization and Reporting Engine for BOLD Functional and Diffusion Tensor MR Imaging Datasets Julien Gervais; Lisa Chuah Siemens Healthcare, Magnetic

More information

OPEN THE HOTLINE CLIENT

OPEN THE HOTLINE CLIENT OPEN THE HOTLINE CLIENT Everything in the Hotline universe starts with the Client Toolbar; it launches all of the Client s major functions. 1 Double-click the Hotline icon on your desktop. The Hotline

More information

It's Safe, Smart, Simple and Fast!

It's Safe, Smart, Simple and Fast! It's Safe, Smart, Simple and Fast! Page 1 of 18 EXIN Marking on The Spot - the Smartphone Solution.... 3 What is it for?... 4 What are the requirements?... 4 How does it work?... 4 How to use the smartphone

More information

Programming Studio #1 ECE 190

Programming Studio #1 ECE 190 Programming Studio #1 ECE 190 Programming Studio #1 Announcements In Studio Assignment Introduction to Linux Command-Line Operations Recitation Floating Point Representation Binary & Hexadecimal 2 s Complement

More information

ipasssafe User Guide 1. Getting started Setup your first password

ipasssafe User Guide 1. Getting started Setup your first password ipasssafe User Guide 1. Getting started Setup your first password When for first launch ipasssafe, you will be asked to change the default setup (0-0- 0-0) To your own private setup You should tap ok and

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

Introduction to the Learning Environment 8.3 to 8.4.x

Introduction to the Learning Environment 8.3 to 8.4.x Introduction to the Learning Environment 8.3 to 8.4.x User Guide Second edition, November 30, 2009 Contents My Home Accessing your courses Searching for courses Navigating inside a course Lists Actions

More information

Power users are all about shortcuts,

Power users are all about shortcuts, Fun With The Command Prompt Power users are all about shortcuts, workarounds, and customizations, and the Command Prompt is the most powerful utility on your PC for performing these. There s almost nothing

More information

Assignment 0. Nothing here to hand in

Assignment 0. Nothing here to hand in Assignment 0 Nothing here to hand in The questions here have solutions attached. Follow the solutions to see what to do, if you cannot otherwise guess. Though there is nothing here to hand in, it is very

More information

Go to on the Career Cruising homepage you will enter your username and password. Click Log In.

Go to   on the Career Cruising homepage you will enter your username and password. Click Log In. Log in Go to http://www2.careercruising.com/default/cplogin/aub on the Career Cruising homepage you will enter your username and password. Click Log In. Document 1: Matchmaker Click on Assessments link

More information