From 130d46b8328f60d6cbb75228b146ec6cbc005664 Mon Sep 17 00:00:00 2001 From: muschellij2 Date: Thu, 21 May 2015 14:15:48 -0400 Subject: [PATCH] CRAN accepted version. --- DESCRIPTION | 11 ++++++----- NEWS | 7 +++++++ R/fslchfiletype.R | 2 +- man/fslchfiletype.help.Rd | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 NEWS diff --git a/DESCRIPTION b/DESCRIPTION index 5dce5f9..7f4b383 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,15 +2,16 @@ Package: fslr Type: Package Title: Wrapper Functions for FSL (FMRIB Software Library) from Functional MRI of the Brain (FMRIB) -Version: 1.4.4 -Date: 2015-04-22 +Version: 1.4.5 +Date: 2015-05-21 Author: John Muschelli Maintainer: John Muschelli Description: Wrapper functions that interface with FSL (http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/), a powerful and commonly-used neuroimaging software, using system commands. The goal is to be able to - interface with FSL completely in R, where you pass R nifti objects and the - function executes an FSL command and returns an R nifti object if desired. + interface with FSL completely in R, where you pass R objects of class "nifti", + implemented by package 'oro.nifti', and the function executes an FSL command + and returns an R object of class "nifti" if desired. Imports: methods, matrixStats, @@ -19,7 +20,7 @@ Imports: Depends: stringr, oro.nifti (>= 0.5.0) -License: GPL-2 +License: GPL-3 VignetteBuilder: knitr Suggests: knitr diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e1ba3d0 --- /dev/null +++ b/NEWS @@ -0,0 +1,7 @@ +fslr v1.4-4 (Release date: 2015-05-20) +============== + +Changes: + +* Moved functions such as cal_img to oro.nifti package. They are all legacies, such as cal_img still works, but calibrateImage and other camelCase functions have been made default. +* Fixed fsl_biascorrect. \ No newline at end of file diff --git a/R/fslchfiletype.R b/R/fslchfiletype.R index 924a910..e0b695c 100644 --- a/R/fslchfiletype.R +++ b/R/fslchfiletype.R @@ -48,7 +48,7 @@ fslchfiletype = function( #' @export #' @examples #' if (have.fsl()){ -#' fslchfiletype() +#' fslchfiletype.help() #' } fslchfiletype.help = function(){ return(fslhelp("fslchfiletype")) diff --git a/man/fslchfiletype.help.Rd b/man/fslchfiletype.help.Rd index 41b307d..3ea9d51 100644 --- a/man/fslchfiletype.help.Rd +++ b/man/fslchfiletype.help.Rd @@ -14,7 +14,7 @@ This function calls \code{fslchfiletype}'s help } \examples{ if (have.fsl()){ - fslchfiletype() + fslchfiletype.help() } }