Skip to content

Commit c73a84b

Browse files
committed
add debugging config and basic settings
1 parent d0e9e9f commit c73a84b

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed

.vscode/launch.json

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": "ds005-anat",
10+
"type": "python",
11+
"request": "launch",
12+
"program": "/usr/local/miniconda/bin/fmriprep",
13+
"args": [
14+
"-w", "/tmp/ds005/work",
15+
"/tmp/data/ds005",
16+
"/tmp/ds005/derivatives",
17+
"participant",
18+
"--skull-strip-template", "OASIS30ANTs:res-1",
19+
"--output-spaces", "MNI152NLin2009cAsym", "MNI152NLin6Asym",
20+
"--sloppy", "--write-graph",
21+
"--anat-only", "-vv", "--notrack"
22+
],
23+
"console": "integratedTerminal",
24+
"justMyCode": false
25+
},
26+
{
27+
"name": "ds005-full",
28+
"type": "python",
29+
"request": "launch",
30+
"program": "/usr/local/miniconda/bin/fmriprep",
31+
"args": [
32+
"-w", "/tmp/ds005/work",
33+
"/tmp/data/ds005",
34+
"/tmp/ds005/derivatives",
35+
"participant",
36+
"--sloppy", "--write-graph",
37+
"--use-aroma",
38+
"--skull-strip-template", "OASIS30ANTs:res-1",
39+
"--output-space", "T1w", "template", "fsaverage5", "fsnative",
40+
"--template-resampling-grid", "native",
41+
"--use-plugin", "/src/fmriprep/.circleci/legacy.yml",
42+
"--cifti-output", "-vv", "--notrack"
43+
],
44+
"console": "integratedTerminal",
45+
"justMyCode": false
46+
},
47+
{
48+
"name": "ds054",
49+
"type": "python",
50+
"request": "launch",
51+
"program": "/usr/local/miniconda/bin/fmriprep",
52+
"args": [
53+
"-w", "/tmp/ds054/work",
54+
"/tmp/data/ds054",
55+
"/tmp/ds054/derivatives",
56+
"participant",
57+
"--fs-no-reconall", "--sloppy",
58+
"--output-spaces", "MNI152NLin2009cAsym:res-2", "anat", "func",
59+
"-vv",
60+
"--notrack"
61+
],
62+
"console": "integratedTerminal",
63+
"justMyCode": false
64+
},
65+
{
66+
"name": "ds210-anat",
67+
"type": "python",
68+
"request": "launch",
69+
"program": "/usr/local/miniconda/bin/fmriprep",
70+
"args": [
71+
"-w", "/tmp/ds210/work",
72+
"/tmp/data/ds210",
73+
"/tmp/ds210/derivatives",
74+
"participant",
75+
"--fs-no-reconall", "--sloppy", "--write-graph",
76+
"--anat-only", "-vv", "--notrack"
77+
],
78+
"console": "integratedTerminal",
79+
"justMyCode": false
80+
},
81+
{
82+
"name": "ds210-full",
83+
"type": "python",
84+
"request": "launch",
85+
"program": "/usr/local/miniconda/bin/fmriprep",
86+
"args": [
87+
"-w", "/tmp/ds210/work",
88+
"/tmp/data/ds210",
89+
"/tmp/ds210/derivatives",
90+
"participant",
91+
"--t2s-coreg", "--use-syn-sdc",
92+
"--template-resampling-grid", "native",
93+
"--dummy-scans", "1",
94+
"--fs-no-reconall", "--sloppy", "--write-graph",
95+
"--anat-only", "-vv", "--notrack"
96+
],
97+
"console": "integratedTerminal",
98+
"justMyCode": false
99+
}
100+
]
101+
}

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"python.linting.flake8Enabled": true,
3+
"python.pythonPath": "/usr/local/miniconda/bin/python",
4+
"restructuredtext.confPath": "${workspaceFolder}/docs",
5+
"python.testing.pytestEnabled": true,
6+
"python.testing.unittestEnabled": false,
7+
"python.testing.nosetestsEnabled": false,
8+
"python.linting.enabled": true,
9+
"python.testing.pytestArgs": [],
10+
"python.linting.pylintEnabled": false
11+
}

0 commit comments

Comments
 (0)