From 00cedbb1812c6e25bf84614613acc7af431e1682 Mon Sep 17 00:00:00 2001 From: Harrison Date: Fri, 28 Apr 2023 11:32:35 -0500 Subject: [PATCH] Created convenience VSCode 'launch.json' --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2b7008b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // 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: Module", + "type": "python", + "request": "launch", + "module": "bmlsa.cli", + "args": [ + "-I", + "id", + "-S", + "sequence", + "-B", + "BLASTp", + "${workspaceFolder}/tests/resources/SARS_CoV-2_genes.csv", + "${workspaceFolder}/tests/resources/NC_045512_coding.fasta", + "${workspaceFolder}/output" + ], + "justMyCode": true + } + ] +} \ No newline at end of file