Skip to content

Commit

Permalink
Merge pull request #1 from XinhuiLi/main
Browse files Browse the repository at this point in the history
[WIP] Pydra AFNI Implementation
  • Loading branch information
djarecka authored Jun 27, 2022
2 parents a30f123 + 2aa319f commit 8b7ec9c
Show file tree
Hide file tree
Showing 12 changed files with 673 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pydra/tasks/TODO/_version.py export-subst
pydra/tasks/afni/_version.py export-subst
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Python package

# Set once
env:
SUBPACKAGE: TODO
SUBPACKAGE: afni

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include versioneer.py
include pydra/tasks/TODO/_version.py
include pydra/tasks/afni/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
imported.
>>> import pydra.engine
>>> import pydra.tasks.TODO
>>> import pydra.tasks.afni
"""
from ._version import get_versions

Expand Down
File renamed without changes.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
This is a basic doctest demonstrating that subpackags can also be
imported.
>>> import pydra.tasks.TODO.utils
>>> import pydra.tasks.afni.utils
"""
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[DEFAULT]
subpackage = TODO
subpackage = afni

[metadata]
author = TODO
author_email = TODO
description = TODO
author = Nipype Developers
author_email = [email protected]
description = AFNI tasks for the Pydra dataflow engine
long_description = file:README.md
long_description_content_type = text/markdown; variant=CommonMark
license = Apache License, 2.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup
import versioneer

SUBPACKAGE = "TODO"
SUBPACKAGE = "afni"

# Give setuptools a hint to complain if it's too old a version
# 30.3.0 allows us to put most metadata in setup.cfg
Expand Down
122 changes: 122 additions & 0 deletions specs/afni_preprocess_param.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
Automask:
-

Bandpass:
-

Despike:
-

BlurInMask:
-

Centrality:
-

Seg:
-

SkullStrip:
-

DegreeCentrality:
-

Retroicor:
-

ECM:
-

TNorm:
-

OutlierCount:
-

NetCorr:
-

CommandLine:
-

Qwarp:
-

AFNIPythonCommand:
-

AlignEpiAnatPy:
-

TCorrelate:
-

ClipLevel:
-

LFCD:
-

Maskave:
-

Hist:
-

AutoTLRC:
-

AutoTcorrelate:
-

AFNICommand:
-

Allineate:
-

ROIStats:
-

TSmooth:
-

Means:
-

Volreg:
-

Fourier:
-

Fim:
-

QwarpPlusMinus:
-

TCorr1D:
-

TProject:
-

TCorrMap:
-

BlurToFWHM:
-

TShift:
-

Warp:
-

Detrend:
-

QualityIndex:
-
Empty file added tools/__init__.py
Empty file.
Loading

0 comments on commit 8b7ec9c

Please sign in to comment.