2025-01-03 19:20:19 +00:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "Python Debugger: Current File with Arguments",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
2025-01-03 20:42:30 +00:00
|
|
|
"program": "${workspaceFolder}/src/nsbdiagnosistoolkit/cli/root.py",
|
2025-01-03 19:20:19 +00:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": [
|
|
|
|
"-fa",
|
|
|
|
"${workspaceFolder}/tests/resources/tohama_I_bpertussis.fasta",
|
|
|
|
"-ipdbmlst",
|
|
|
|
"pubmlst_bordetella_seqdef",
|
2025-01-03 20:42:30 +00:00
|
|
|
"${workspaceFolder}/output"
|
2025-01-03 19:20:19 +00:00
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}/src",
|
|
|
|
"env": {
|
|
|
|
"PYTHONPATH": "${workspaceFolder}/src"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|