Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 2.23 KB

CONTRIBUTE.md

File metadata and controls

29 lines (20 loc) · 2.23 KB

Introduction

dcm2niix is a community effort

Like the Brain Imaging Data Structure, which it supports, dcm2niix is developed by the community for the community and everybody can become a part of the community.

The easiest way to contribute to dcm2niix is to ask questions you have by generating Github issues or asking a question on the NITRC forum.

The code is open source, and you can share your improvements by creating a pull request. dcm2niix is a community project that has benefitted from many contributors.

The INCF suggests indicating who is responsible for maintaining software for stability and support. Therefore, below we indicate several active contributors and their primary domain of expertise. However, this list is not comprehensive, and it is noted that the project has been supported by contributions from many users. This list does not reflect magnitude of prior contributions, rather it is a non-exhaustive list of members who are actively maintaining the project.

  • Jon Clayden: (@jonclayden): R Deployment
  • Ningfei Li : (@ningfei) CMake, AppVeyor, Travis
  • Yaroslav O. Halchenko: (@yarikoptic) Debian distributions
  • Taylor Hanayik (@hanayik): FSL integration
  • Michael Harms (@mharms): Advanced modalities
  • Roger D Newman-Norlund (@rogiedodgie): User support
  • Rob Reid (@captainnova): Clinical modalities
  • Chris Rorden (@neurolabusc): General development, user support

Style Guide

dcm2niix is written in C. Different programmers prefer different styles of indentation. Feel free to contribute code without being concerned about matching the style of the rest of the code. Once in a while, the code base will be automatically reformatted to make it appear more consistent for all users. This is done automatically with clang-format:

clang-format -i -style="{BasedOnStyle: LLVM, IndentWidth: 4, IndentCaseLabels: false, TabWidth: 4, UseTab: Always, ColumnLimit: 0}" *.cpp *.h