You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you have installed the MolecularFingerprints.jl package, you can start using it to calculate molecular fingerprints. Here is a simple example:
31
31
32
32
```julia
@@ -41,6 +41,42 @@ println(fingerprint_vector)
41
41
findall(fingerprint_vector) # Indices of bits set to 1
42
42
```
43
43
44
+
## Usage of all Fingerprint Types
45
+
The MolecularFingerprints.jl package supports several types of molecular fingerprints. Here is an example of how to use all available fingerprint types:
46
+
47
+
```julia
48
+
smiles ="C1=CC=CC=C1"
49
+
50
+
# 2. This package implements 4 types of fingerprints.
51
+
# All of them could be customized with parameters, but here we use default settings.
0 commit comments