-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.Rmd
47 lines (40 loc) · 1.86 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
output: github_document
---
<!-- index.md is generated from index.Rmd. Please edit that file -->
```{r setup, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-",
fig.width = 5,
fig.height = 4
)
```
Spectroscopy Analysis Tools (spant)
=====
[![Travis Build Status](https://travis-ci.org/martin3141/spant.svg?branch=master)](https://travis-ci.org/martin3141/spant)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/martin3141/spant?branch=master&svg=true)](https://ci.appveyor.com/project/martin3141/spant)
[![](http://cranlogs.r-pkg.org/badges/spant)](http://cran.rstudio.com/web/packages/spant/index.html)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/spant)](https://cran.r-project.org/package=spant)
## Overview
spant provides a full suite of tools to build automated analysis pipelines for
Magnetic Resonance Spectroscopy (MRS) data. The following features are included:
* Raw data import/export.
* Flexible data types to support single voxel, dynamic and spectroscopic imaging data types.
* Publication quality plotting.
* Extensive set of pre-processing steps (phasing, coil-combination, zero-filling, HSVD filtering...)
* Quantum mechanical based simulation for experimental design and basis-set generation.
* Set of metabolite, macromolecule and lipid parameters for typical brain analyses.
* VARPRO based fitting and interfaces for TARQUIN and LCModel for metabolite quantitation.
* Voxel registration to anatomical images for partial volume concentration corrections.
## Installation
You can install the stable version of spant from CRAN:
```{r cran, eval = FALSE}
install.packages("spant", dependencies = TRUE)
```
Or the the development version from GitHub (requires `devtools` package):
```{r github, eval = FALSE}
install.packages("devtools")
devtools::install_github("martin3141/spant")
```