Skip to content

Commit d1edd09

Browse files
committed
Rename mia_processes/python/mia_processes to mia_processes/mia_processe
1 parent 1aff5fd commit d1edd09

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+29333
-16
lines changed

.idea/mia_processes.iml

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import os
1616
import sys
1717

18-
sys.path.insert(0, os.path.abspath("../../python"))
18+
sys.path.insert(0, os.path.abspath("../../"))
1919
# Next lines to use only in dev mode (not when pushing to github)
2020
sys.path.insert(0, os.path.abspath("../../../populse_mia/python"))
2121
sys.path.insert(0, os.path.abspath("../../../populse_db/python"))

mia_processes/__init__.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
Mia_processes is the official bricks library for populse_mia.
4+
A brick can be an atomic operation or a pipeline (a succession of atomic
5+
calculations).
6+
7+
:Contains:
8+
:Packages:
9+
- bricks: the library of atomic bricks
10+
- pipelines: the pipelines library
11+
- utils: various general tools used in bricks or pipelines
12+
13+
"""
14+
15+
##########################################################################
16+
# mia_processes - Copyright (C) IRMaGe/CEA, 2018
17+
# Distributed under the terms of the CeCILL license, as published by
18+
# the CEA-CNRS-INRIA. Refer to the LICENSE file or to
19+
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html
20+
# for details.
21+
##########################################################################
22+
23+
from .info import __version__ # noqa: F401

mia_processes/bricks/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
:Contains:
4+
:Packages:
5+
- preprocess: bricks used in the pre-treatment stage
6+
- reports: bricks used in the reports generation
7+
- stat: bricks used in the statistical calculation stage
8+
- tools: various bricks used as tools
9+
10+
"""
11+
12+
##########################################################################
13+
# mia_processes - Copyright (C) IRMaGe/CEA, 2018
14+
# Distributed under the terms of the CeCILL license, as published by
15+
# the CEA-CNRS-INRIA. Refer to the LICENSE file or to
16+
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html
17+
# for details.
18+
##########################################################################
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
Each package corresponds to a software encapsulated in mia_processes.
4+
5+
:Contains:
6+
:Packages:
7+
- afni: bricks from afni
8+
- ants: bricks from ants
9+
- dipy: bricks from dipy
10+
- freesurfer: bricks from freesurfer
11+
- fsl: bricks from fsl
12+
- other: bricks from other sources (usually home made bricks)
13+
- spm: bricks from spm
14+
15+
"""
16+
17+
##########################################################################
18+
# mia_processes - Copyright (C) IRMaGe/CEA, 2018
19+
# Distributed under the terms of the CeCILL license, as published by
20+
# the CEA-CNRS-INRIA. Refer to the LICENSE file or to
21+
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html
22+
# for details.
23+
##########################################################################
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
The atomic calculations from afni.
4+
5+
"""
6+
7+
##########################################################################
8+
# mia_processes - Copyright (C) IRMaGe/CEA, 2018
9+
# Distributed under the terms of the CeCILL license, as published by
10+
# the CEA-CNRS-INRIA. Refer to the LICENSE file or to
11+
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html
12+
# for details.
13+
##########################################################################
14+
15+
from .processes import ( # noqa: F401
16+
GCOR,
17+
Automask,
18+
Calc,
19+
CalcDropTRs,
20+
Despike,
21+
FWHMx,
22+
OutlierCount,
23+
QualityIndex,
24+
RefitDeoblique,
25+
SkullStrip,
26+
TShift,
27+
TStatMean,
28+
Volreg,
29+
)

0 commit comments

Comments
 (0)