-
Notifications
You must be signed in to change notification settings - Fork 24
Home
Taeber Rapczak edited this page Mar 31, 2020
·
3 revisions
Welcome to the NACCulator wiki!
Please see the README.md for documentation.
If you're using VS Code to debug, you can use the following launch.json
to run NACCulator:
{
"version": "0.2.0",
"configurations": [
{
"name": "redcap2nacc",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/nacc/redcap2nacc.py",
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"args": [
"-ivp",
"<data.csv",
">data.txt"
],
"console": "integratedTerminal"
}
]
}