Authors: | Adrien Birbaumer and Sebastien Tourbier |
---|---|
Version: | 2 |
Copyright: | Copyright (C) 2017-2021, Ecole Polytechnique Fédérale de Lausanne (EPFL) and Hospital Center and University of Lausanne (UNIL-CHUV), Switzerland & Contributors, This software is distributed under the open-source license Modified BSD. |
Contents
The development philosophy for this new version of the Connectome Mapper is to:
I. Keep the code of the processing as much as possible outside of the actual main Connectome Mapper code, through the use and extension of existing Nipype interfaces and an external library (dubbed cmtklib).
- Enhance portability by freezing the computing environment with all software dependencies installed, through the adoption of the BIDS App framework relying on light software container technologies.
- Enhance inter-operability by working with datasets structured following the Brain Imaging Data Structure structured dataset.
Further development, typically additions of other tools and configuration options should go in this direction.
Possible enhancements are probably to be included in the following list:
- Adding of a configuration option to an existing stage
- Adding of a new stage
- Adding of a new pipeline
The adding of newer configuration options to existing stages should be self- understandable. If the addition is large enough to be considered a "sub-module" of an existing stage, see the Diffusion stage example.
Adding a new stage implies the addition of the stage folder to the cmp/stages directory and according modification of the parent pipeline along with insertion of a new image. Copy-paste of existing stage (such as segmentation stage) is recommended.
Adding a new pipeline implies the creation of a new pipeline script and folder in the cmp/pipelines directory. Again copy-pasting an existing pipeline is the better idea here. Modification of the cmp/project.py file is also needed.