https://github.com/bids-apps/broccoli

BIDS App for BROCCOLI

https://github.com/bids-apps/broccoli

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 1 DOI reference(s) in README
  • Academic publication links
    Links to: frontiersin.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.5%) to scientific vocabulary

Keywords

bids bidsapp mri
Last synced: 5 months ago · JSON representation

Repository

BIDS App for BROCCOLI

Basic Info
  • Host: GitHub
  • Owner: bids-apps
  • License: apache-2.0
  • Language: Dockerfile
  • Default Branch: master
  • Homepage:
  • Size: 55.7 KB
Statistics
  • Stars: 6
  • Watchers: 3
  • Forks: 1
  • Open Issues: 5
  • Releases: 0
Topics
bids bidsapp mri
Created over 9 years ago · Last pushed over 1 year ago
Metadata Files
Readme License

README.md

Description

BROCCOLI is a software for analysis of fMRI (functional magnetic resonance imaging) data and is written in OpenCL (Open Computing Language). The analysis can thereby be performed in parallel on many types of hardware, such as CPUs, Nvidia GPUs and AMD GPUs. The result is a significantly faster analysis than possible with other software packages for fMRI analysis. For example, non-linear normalization of an anatomical T1 volume to MNI space (1mm resolution) takes only 4-8 seconds with a GPU.

Documentation

Please read the official BROCCOLI documentation

Error reporting

Experiencing problems? Please open an issue

Acknowledgement

When using this pipeline, please acknowledge us by citing

Eklund, A., Dufort, P., Villani, M., LaConte, S., BROCCOLI: Software for Fast fMRI Analysis on Many-Core CPUs and GPUs, Frontiers in Neuroinformatics, 8:24, 2014

Usage

Command-line usage of the processing script broccolipipeline.sh is as follows:

Synopsis

./broccolipipeline.sh bids_dir output_dir analysis_level
  • bids_dir: The directory with the input dataset formatted according to the BIDS standard.
  • output_dir: The directory where the output files should be stored. If you are running group level analysis, this folder should be prepopulated with the results of the participant level analysis.
  • analysis_level: Level of the analysis that will be performed. Multiple participant level analyses can be run independently (in parallel) using the same output_dir. Options are: participant and group.

Options

Options specific to the batch processing of subject data

  • --participant_label
    The label(s) of the participant(s) that should be analyzed. The label(s) correspond(s) to sub- from the BIDS spec (so it does not include "sub-"). If this parameter is not provided, all subjects will be analyzed sequentially. Multiple participants can be specified with a space-separated list.

Instructions

The bids/broccoli Docker container enables users to run fMRI analyses in parallel using OpenCL. The pipeline requires that data be organized in accordance with the BIDS specification.

To get a Docker container with BROCCOLI pre-installed, run

{bash} $ docker pull bids/broccoli:v1.0.0

To run a first level analysis of all subjects in a BIDS dataset, run

{bash} $ docker run -i --rm \ -v /Users/yourname/data/ds005:/bids_dataset \ -v /Users/yourname/outputs:/outputs \ bids/broccoli:v1.0.0 \ /bids_dataset /outputs participant

To run a first level analysis of subject 01 only, run

{bash} $ docker run -i --rm \ -v /Users/yourname/data/ds005:/bids_dataset \ -v /Users/yourname/outputs:/outputs \ bids/broccoli:v1.0.0 \ /bids_dataset /outputs participant --participant_label 01

To run a group analysis of all subjects, run

{bash} $ docker run -i --rm \ -v /Users/yourname/data/ds005:/bids_dataset \ -v /Users/yourname/outputs:/outputs \ bids/broccoli:v1.0.0 \ /bids_dataset /outputs group

Commercial use

This BIDS App is using FSL. If you are considering commercial use of this App please consult the relevant licenses.

Owner

  • Name: BIDS Apps
  • Login: bids-apps
  • Kind: organization

A collection of containerized neuroimaging workflows and pipelines that accept datasets organized according to the Brain Imaging Data Structure (BIDS).

GitHub Events

Total
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
Last Year
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2

Dependencies

Dockerfile docker
  • centos 6.8 build