liyuesen commited on
Commit
4765e93
1 Parent(s): 482b226

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -1,4 +1,4 @@
1
- #install
2
 
3
  conda create -n druggpt python=3.7
4
  conda activate druggpt
@@ -9,3 +9,20 @@
9
  pip install scipy scikit-learn
10
  conda install -c openbabel openbabel
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Install
2
 
3
  conda create -n druggpt python=3.7
4
  conda activate druggpt
 
9
  pip install scipy scikit-learn
10
  conda install -c openbabel openbabel
11
 
12
+ #How to use
13
+
14
+ Download the drug_generator.py file.
15
+ Activate the druggpt environment using conda activate druggpt.
16
+ Navigate to the directory containing the drug_generator.py file using cd path/to/directory.
17
+ Run the script with the desired arguments, such as the protein sequence, ligand prompt, number of molecules to generate, and output directory.
18
+
19
+ #Example usage:
20
+ ##If you want to input a protein FASTA file,
21
+ python drug_generator.py -f bcl2.fasta -n 50
22
+
23
+ ##If you want to input the amino acid sequence of the protein,
24
+ python drug_generator.py -p MAKQPSDVSSECDREGRQLQPAERPPQLRPGAPTSLQTEPQGNPEGNHGGEGDSCPHGSPQGPLAPPASPGPFATRSPLFIFMRRSSLLSRSSSGYFSFDTDRSPAPMSCDKSTQTPSPPCQAFNHYLSAMASMRQAEPADMRPEIWIAQELRRIGDEFNAYYARRVFLNNYQAAEDHPRMVILRLLRYIVRLVWRMH -n 50
25
+
26
+ ##If you want to provide a prompt for the ligand
27
+ python drug_generator.py -f bcl2.fasta -l COc1ccc(cc1)C(=O) -n 50
28
+