Skip to content

Commit

Permalink
DOC: update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastientourbier committed Nov 4, 2020
1 parent e515bff commit 3a15e99
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
4 changes: 2 additions & 2 deletions pymialsrtk/info.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" This file contains cmp package information """
"""This file contains cmp package information"""

_version_major = 2
_version_minor = 0
Expand All @@ -19,7 +19,7 @@
__current_year__ = '2020'

__author__ = 'The MIAL Super-Resolution ToolKit developers'
__copyright__ = 'Copyright 2017-{}, Medical Image Analysis Laboratory (MIAL), Lausanne'.format(__current_year__)
__copyright__ = 'Copyright 2016-{}, Medical Image Analysis Laboratory (MIAL), Lausanne'.format(__current_year__)
__credits__ = ('Contributors: please check the ``.zenodo.json`` file at the top-level folder'
'of the repository')
__license__ = '3-clause BSD'
Expand Down
6 changes: 5 additions & 1 deletion pymialsrtk/interfaces/postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
#
# This software is distributed under the open-source license Modified BSD.

""" PyMIALSRTK postprocessing functions encompassing a High Resolution mask refinement and an N4 global bias field correction."""
"""PyMIALSRTK postprocessing functions
It encompasses a High Resolution mask refinement and an N4 global bias field correction.
"""

import os

Expand Down
4 changes: 2 additions & 2 deletions pymialsrtk/interfaces/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# This software is distributed under the open-source license Modified BSD.

"""
"""PyMIALSRTK preprocessing functions
PyMIALSRTK preprocessing functions including BTK Non-local-mean denoising, slice intensity correction
It includes BTK Non-local-mean denoising, slice intensity correction
slice N4 bias field correction, slice-by-slice correct bias field, intensity standardization,
histogram normalization and both manual or deep learning based automatic brain extraction.
Expand Down
3 changes: 1 addition & 2 deletions pymialsrtk/interfaces/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
#
# This software is distributed under the open-source license Modified BSD.

"""PyMIALSRTK preprocessing functions
"""
"""PyMIALSRTK reconstruction functions"""

import os

Expand Down
5 changes: 2 additions & 3 deletions pymialsrtk/parser.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Copyright © 2016-2019 Medical Image Analysis Laboratory, University Hospital Center and University of Lausanne (UNIL-CHUV), Switzerland
# Copyright © 2016-2020 Medical Image Analysis Laboratory, University Hospital Center and University of Lausanne (UNIL-CHUV), Switzerland
#
# This software is distributed under the open-source license Modified BSD.

""" MIALSRTK BIDS App Commandline Parser
"""
"""MIALSRTK BIDS App Commandline Parser"""

from pymialsrtk.info import __version__
from pymialsrtk.info import __release_date__
Expand Down
7 changes: 5 additions & 2 deletions pymialsrtk/pipelines/anatomical/srr.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env python
# coding: utf-8
# Copyright © 2016-2020 Medical Image Analysis Laboratory, University Hospital Center and University of Lausanne (UNIL-CHUV), Switzerland
#
# This software is distributed under the open-source license Modified BSD.

"""Module for the super-resolution reconstruction pipeline"""

import os

Expand Down

0 comments on commit 3a15e99

Please sign in to comment.