descrip-methods: Extract or Replace NIfTI/Analyze Description

Description Usage Arguments Methods Author(s) Examples

Description

Methods that act on the “description” character string in the NIfTI or ANALYZE header.

Usage

1
2
## S4 method for signature 'nifti'
descrip(object)

Arguments

object

is an object of class nifti or anlz.

Methods

object = "anlz"

Extract or replace Analyze description.

object = "nifti"

Extract or replace NIfTI description.

Author(s)

Brandon Whitcher bwhitcher@gmail.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 
url <- "http://nifti.nimh.nih.gov/nifti-1/data/avg152T1_LR_nifti.nii.gz"
urlfile <- file.path(system.file("nifti", package="oro.nifti"),
                     "mniLR.nii.gz")
download.file(url, urlfile, quiet=TRUE)

## End(Not run)
urlfile <- file.path(system.file("nifti", package="oro.nifti"),
                     "mniLR.nii.gz")
mniLR <- readNIfTI(urlfile)
descrip(mniLR)
descrip(mniLR) <- paste(descrip(mniLR), version$version.string, sep="; ")
descrip(mniLR)

oro.nifti documentation built on May 2, 2019, 5:26 p.m.