-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
7,798 additions
and
7,410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
{ | ||
// 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: PyPEF Help", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": [ | ||
"--help" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF MKLSTS ANEH", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/ANEH/", | ||
"args": [ | ||
"mklsts", | ||
"--wt", "${workspaceFolder}/datasets/ANEH/Sequence_WT_ANEH.fasta", | ||
"--input", "${workspaceFolder}/datasets/ANEH/37_ANEH_variants.csv" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF MKLSTS avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"mklsts", | ||
"--wt", "P42212_F64L.fasta", | ||
"--input", "avGFP.csv" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF ml -e onehot pls_loocv", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/ANEH", | ||
"args": [ | ||
"ml", | ||
"-e", "onehot", | ||
"-l", "LS.fasl", | ||
"-t", "TS.fasl", | ||
"--regressor", "pls_loocv" | ||
] | ||
}, | ||
|
||
{ // GREMLIN zero-shot steps: | ||
// 1. $pypef param_inference --msa uref100_avgfp_jhmmer_119.a2m --opt_iter 100 | ||
// 2. $pypef hybrid -t TS.fasl --params GREMLIN | ||
// or | ||
// 2. $pypef hybrid -m GREMLIN -t TS.fasl --params GREMLIN | ||
"name": "Python: PyPEF save GREMLIN avGFP model", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"param_inference", | ||
"--msa", "uref100_avgfp_jhmmer_119.a2m", | ||
"--opt_iter", "100" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF hybrid/only-TS-zero-shot GREMLIN-DCA avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"hybrid", | ||
//"-m", "GREMLIN", // optional, not required | ||
"--ts", "TS.fasl", | ||
"--params", "GREMLIN" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF hybrid/only-PS-zero-shot GREMLIN-DCA avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"hybrid", | ||
//"-m", "GREMLIN", // optional, not required | ||
"--ps", "TS.fasl", | ||
"--params", "GREMLIN" | ||
] | ||
}, | ||
|
||
{ // PLMC zero-shot steps: | ||
// 1. $pypef param_inference --params uref100_avgfp_jhmmer_119_plmc_42.6.params | ||
// 2. $pypef hybrid -t TS.fasl --params PLMC | ||
"name": "Python: PyPEF save PLMC avGFP model", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"param_inference", | ||
"--params", "uref100_avgfp_jhmmer_119_plmc_42.6.params" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF hybrid/only-TS-zero-shot PLMC-DCA avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"hybrid", | ||
"--ts", "TS.fasl", | ||
"--params", "PLMC", | ||
"--threads", "24" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF hybrid/only-PS-zero-shot PLMC-DCA avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"hybrid", | ||
//"-m", "PLMC", // optional, not required | ||
"--ps", "TS.fasl", | ||
"--params", "uref100_avgfp_jhmmer_119_plmc_42.6.params", | ||
"--threads", "24" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF hybrid/only-PS-zero-shot PLMC-DCA variant 2 avGFP", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"hybrid", | ||
//"-m", "PLMC", // optional, not required | ||
"--ps", "TS.fasl", | ||
"--params", "PLMC", | ||
"--threads", "24" | ||
] | ||
}, | ||
|
||
{ | ||
"name": "Python: PyPEF !wrong! MSA input format (STO)", | ||
"type": "python", | ||
"request": "launch", | ||
"env": {"PYTHONPATH": "${workspaceFolder}"}, | ||
"program": "${workspaceFolder}/pypef/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"cwd": "${workspaceFolder}/datasets/AVGFP/", | ||
"args": [ | ||
"param_inference", | ||
"--msa", "uref100_avgfp_jhmmer_119.sto" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"markdown.extension.toc.updateOnSave": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.