splitmsa/.vscode/launch.json
Harrison 419adcd098 Updated translation mechanism.
Added failsafe for overlapping genes where length is not equal to a multiple of 3.

Added codon ambiguity detection which translates to "X" in aa sequence.
2023-03-30 16:16:00 -05:00

25 lines
862 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}/msa_splitter.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
}
]
}