All Projects → muschellij2 → fslr

muschellij2 / fslr

Licence: other
FSL-R Interface package

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to fslr

clinica
Software platform for clinical neuroimaging studies
Stars: ✭ 153 (+378.13%)
Mutual labels:  neuroimaging, fsl
pTFCE
Probabilistic Threshold-Free Cluster Enhancement of Neuroimages
Stars: ✭ 29 (-9.37%)
Mutual labels:  neuroimaging, fsl
ENIGMA
The ENIGMA Toolbox is an open-source repository for accessing 100+ ENIGMA statistical maps, visualizing cortical and subcortical surface data, and relating neuroimaging findings to micro- and macroscale brain organization. 🤠
Stars: ✭ 66 (+106.25%)
Mutual labels:  neuroimaging
Dcm2Bids
Reorganising NIfTI files from dcm2niix into the Brain Imaging Data Structure
Stars: ✭ 109 (+240.63%)
Mutual labels:  neuroimaging
NeuroMorph
The NeuroMorph analysis and visualization toolkit
Stars: ✭ 57 (+78.13%)
Mutual labels:  neuroimaging
BrainMaGe
Brain extraction in presence of abnormalities, using single and multiple MRI modalities
Stars: ✭ 23 (-28.12%)
Mutual labels:  neuroimaging
mne-bids
MNE-BIDS is a Python package that allows you to read and write BIDS-compatible datasets with the help of MNE-Python.
Stars: ✭ 88 (+175%)
Mutual labels:  neuroimaging
MIRACL
Multi-modal Image Registration And Connectivity anaLysis
Stars: ✭ 23 (-28.12%)
Mutual labels:  neuroimaging
bidscoin
BIDScoin converts your source-level neuroimaging data to BIDS
Stars: ✭ 75 (+134.38%)
Mutual labels:  neuroimaging
clinicadl
Framework for the reproducible processing of neuroimaging data with deep learning methods
Stars: ✭ 114 (+256.25%)
Mutual labels:  neuroimaging
bidskit
Utility functions for working with DICOM and BIDS neuroimaging data
Stars: ✭ 52 (+62.5%)
Mutual labels:  neuroimaging
brainlit
Method container for computational neuroscience on brains.
Stars: ✭ 20 (-37.5%)
Mutual labels:  neuroimaging
socialRL
Code and data for Zhang, Lengersdorff et al. (2020)
Stars: ✭ 19 (-40.62%)
Mutual labels:  neuroimaging
nidb
NeuroInformatics Database
Stars: ✭ 26 (-18.75%)
Mutual labels:  neuroimaging
bids-matlab
MATLAB / Octave tools for BIDS datasets
Stars: ✭ 37 (+15.63%)
Mutual labels:  neuroimaging
brainGraph
Graph theory analysis of brain MRI data
Stars: ✭ 136 (+325%)
Mutual labels:  neuroimaging
gifti
MATLAB/Octave GIfTI Library
Stars: ✭ 16 (-50%)
Mutual labels:  neuroimaging
threeBrain
3D Visualization of Brain MRI
Stars: ✭ 29 (-9.37%)
Mutual labels:  neuroimaging
mrivis
medical image visualization library and development toolkit
Stars: ✭ 19 (-40.62%)
Mutual labels:  neuroimaging
Neuroimaging.jl
Neuroimaging in Julia
Stars: ✭ 39 (+21.88%)
Mutual labels:  neuroimaging

fslr

The goal of fslr is to port/wrap of FSL into R. As FSL has a fossil as it’s logo and it was to sound like “fossil”, that’s why we have that as our logo.

Much of the operations of FSL, such as fslmaths and fslstats are incorporated. This package is very useful for structural imaging, such as MRI. Some of the fMRI functionality has not been ported or has limited capabiilty.

Build Status CRAN_Status_Badge AppVeyor Build Status Coverage Status Codacy Badge R-CMD-check

Installation

You can install fslr from github with:

# install.packages("devtools")
devtools::install_github("muschellij2/fslr")

Neurodebian builds

Neurodebian has caused some issues in the past for me. I used the following script to just shotgun copy everything. This was discussed in issue #10.

FSLDIR=/usr/local/fsl
FSLSHARE=/usr/share/data

mkdir -p ${FSLDIR}/bin && cp /usr/lib/fsl/5.0/* ${FSLDIR}/bin/
mkdir -p ${FSLDIR}/data/standard && mkdir -p ${FSLDIR}/data/atlases 


#######################################
# Setting things up like other installers
#######################################
cp -R ${FSLSHARE}/fsl-mni152-templates/* ${FSLDIR}/data/standard/

# setting up atlases
cp -R ${FSLSHARE}/harvard-oxford-atlases/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/juelich-histological-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/bangor-cerebellar-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/jhu-dti-whitematter-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/forstmann-subthalamic-nucleus-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/fsl-resting-connectivity-parcellation-atlases/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/mni-structural-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/oxford-thalamic-connectivity-atlas/* ${FSLDIR}/data/atlases/ 
cp -R ${FSLSHARE}/talairach-daemon-atlas/* ${FSLDIR}/data/atlases/ 

RStudio Neurodebian Problems

Referenced in another issue, you may have to add

export LD_LIBRARY_PATH=/usr/lib/fsl/5.0:$LD_LIBRARY_PATH

in your .bash_profile or .profile to get things to work.

Otherwise, you may get errors such as:

error while loading shared libraries: libnewimage.so: cannot open shared object file: No such file or directory

fossil icon by Alice Ralph

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].