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

MAINT: Conclude porting of reportlets into NiReports #1068

Merged
merged 2 commits into from Mar 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -360,8 +360,8 @@ jobs:
- data-v2-
- restore_cache:
keys:
- t1w-v3-{{ epoch }}
- t1w-v3-
- t1w-v4-{{ epoch }}
- t1w-v4-

- run:
name: Remove old, cached configs
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
path: /tmp/t1w/misc

- save_cache:
key: t1w-v3-{{ epoch }}
key: t1w-v4-{{ epoch }}
paths:
- /tmp/t1w/work

Expand Down Expand Up @@ -520,8 +520,8 @@ jobs:
- data-v2-
- restore_cache:
keys:
- bold-v2-{{ epoch }}
- bold-v2-
- bold-v3-{{ epoch }}
- bold-v3-

- run:
name: Remove old, cached configs
Expand Down Expand Up @@ -557,7 +557,7 @@ jobs:
path: /tmp/bold/misc

- save_cache:
key: bold-v2-{{ epoch }}
key: bold-v3-{{ epoch }}
paths:
- /tmp/bold/work

Expand Down
4 changes: 0 additions & 4 deletions mriqc/interfaces/__init__.py
Expand Up @@ -32,7 +32,6 @@
from mriqc.interfaces.bids import IQMFileSink
from mriqc.interfaces.common import ConformImage, EnsureSize
from mriqc.interfaces.functional import FunctionalQC, Spikes
from mriqc.interfaces.viz import PlotContours, PlotMosaic, PlotSpikes
from mriqc.interfaces.webapi import UploadIQMs

__all__ = [
Expand All @@ -43,9 +42,6 @@
"FunctionalQC",
"Harmonize",
"IQMFileSink",
"PlotContours",
"PlotMosaic",
"PlotSpikes",
"RotationMask",
"Spikes",
"StructuralQC",
Expand Down
203 changes: 0 additions & 203 deletions mriqc/interfaces/viz.py

This file was deleted.

2 changes: 1 addition & 1 deletion mriqc/qc/anatomical.py
Expand Up @@ -459,7 +459,7 @@ def art_qi2(img, airmask, min_voxels=int(1e3), max_voxels=int(3e5), save_plot=Tr

"""

from mriqc.viz.utils import plot_qi2
from nireports.reportlets.nuisance import plot_qi2
from scipy.stats import chi2
from sklearn.neighbors import KernelDensity

Expand Down
Empty file removed mriqc/viz/__init__.py
Empty file.
109 changes: 0 additions & 109 deletions mriqc/viz/svg.py

This file was deleted.