File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,21 @@ Generate 100 9-mer peptides using ESM2 (direct generation):
56
56
python scripts/generation/generate_control_peptides.py --source llm --llm_model esm2 --length 9 --count 100 --output ESM2-9mer-100.fasta
57
57
```
58
58
59
+ ## Docker Usage
60
+
61
+ Run the tool using Docker (no local setup required):
62
+
63
+ ``` bash
64
+ # Pull the latest image
65
+ docker pull chris2004m/peptide-sequence-synthesis:latest
66
+
67
+ # Run with Docker (interactive mode)
68
+ docker run -it --rm -v $( pwd) /output:/app/output chris2004m/peptide-sequence-synthesis:latest
69
+
70
+ # Inside the container, run any of the commands above, e.g.:
71
+ python scripts/generation/generate_control_peptides.py --source random --length 9 --count 100 --output output/Random-9mer-100.fasta
72
+ ```
73
+
59
74
## Acknowledgements
60
75
61
76
- [ ProtGPT2] ( https://huggingface.co/nferruz/ProtGPT2 )
You can’t perform that action at this time.
0 commit comments