File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 6
6
import numpy as np
7
7
from loguru import logger
8
8
from physutils import physio
9
- from physutils .tasks import transform_to_physio
9
+ from physutils .tasks import generate_physio
10
10
from pydra import Submitter , Workflow
11
11
12
12
import phys2denoise .tasks as tasks
@@ -31,8 +31,8 @@ def test_integration(fake_phys):
31
31
phys = physio_file ,
32
32
)
33
33
wf .add (
34
- transform_to_physio (
35
- name = "transform_to_physio " ,
34
+ generate_physio (
35
+ name = "generate_physio " ,
36
36
input_file = wf .lzin .phys ,
37
37
fs = wf .lzin .fs ,
38
38
mode = "physio" ,
@@ -41,7 +41,7 @@ def test_integration(fake_phys):
41
41
wf .add (
42
42
tasks .compute_metrics (
43
43
name = "compute_metrics" ,
44
- phys = wf .transform_to_physio .lzout .out ,
44
+ phys = wf .generate_physio .lzout .out ,
45
45
metrics = [
46
46
"respiratory_variance" ,
47
47
"respiratory_variance_time" ,
Original file line number Diff line number Diff line change @@ -28,8 +28,7 @@ install_requires =
28
28
duecredit
29
29
loguru
30
30
pydra
31
- # re-constrain version before merging to master
32
- physutils
31
+ physutils ==0.3.0
33
32
tests_require =
34
33
pytest >=5.3
35
34
test_suite = pytest
You can’t perform that action at this time.
0 commit comments