filterfasta/.vscode/launch.json
Harrison a6871214a4
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good
Added test to check installation
2023-04-22 16:33:30 -05:00

22 lines
673 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": "Run Fasta Filter",
"type": "python",
"request": "launch",
"module": "filterfasta.cli",
"args": [
"reference_standards.fas",
"reference_standards_filtered.fas",
"-c",
"rt"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}