Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keeping track of fMRIPrep. #192

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed docs problems
GalKepler committed May 2, 2022
commit 4a4d40f02ea1ac913199b6c0de2c8150286d53aa
2 changes: 2 additions & 0 deletions dmriprep/config/config.py
Original file line number Diff line number Diff line change
@@ -179,6 +179,8 @@ def redirect_warnings(
except Exception:
pass

DEBUG_MODES = ["fieldmaps"]


class _Config:
"""An abstract class forbidding instantiation."""
2 changes: 1 addition & 1 deletion dmriprep/workflows/base.py
Original file line number Diff line number Diff line change
@@ -474,7 +474,7 @@ def init_single_subject_wf(subject_id):
debug=config.execution.debug is True,
estimators=fmap_estimators,
omp_nthreads=config.nipype.omp_nthreads,
output_dir=str(output_dir),
output_dir=dmriprep_dir,
subject=subject_id,
)
fmap_wf.__desc__ = f"""
10 changes: 6 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -11,13 +11,15 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
import re
from packaging.version import Version
import sys

from dmriprep import __version__, __copyright__, __packagename__
from dmriprep import __copyright__, __packagename__, __version__
from packaging.version import Version

sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "sphinxext")))
sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), "sphinxext"))
)
from github_link import make_linkcode_resolve

# -- Project information -----------------------------------------------------