splitmsa/.vscode/launch.json
Harrison 8b379198ec
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
Prepping for implementation of quick and dirty GUI
2023-04-11 16:13:07 -05:00

26 lines
898 B
JSON

{
// 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": "Splitter Single Gene with Translation",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/splitmsa/splitmsa.py",
"args": [
"${workspaceFolder}/tests/resources/test_msa-shortened.fa",
"--gene-list",
"${workspaceFolder}/tests/resources/gene_list.csv",
"-C",
"-E",
"DEBUG",
"--do-translate",
"--gen-cut-stop-codon"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}