this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26622 from UnixJunkie/molenc_1701

new file: packages/molenc/molenc.17.0.1/opam

authored by

Shon Feder and committed by
GitHub
9b28c845 1b4da501

+99
+99
packages/molenc/molenc.17.0.1/opam
··· 1 + opam-version: "2.0" 2 + authors: "Francois Berenger" 3 + maintainer: "unixjunkie@sdf.org" 4 + homepage: "https://github.com/UnixJunkie/molenc" 5 + bug-reports: "https://github.com/UnixJunkie/molenc/issues" 6 + dev-repo: "git+https://github.com/UnixJunkie/molenc.git" 7 + license: "BSD-3-Clause" 8 + build: ["dune" "build" "-p" name "-j" jobs] 9 + install: [ 10 + ["cp" "bin/molenc_diam.py" "%{bin}%/molenc_diam.py"] 11 + ["cp" "bin/molenc_ph4.py" "%{bin}%/molenc_ph4.py"] 12 + ["cp" "bin/molenc.sh" "%{bin}%/molenc.sh"] 13 + ["cp" "bin/molenc_ligprep.sh" "%{bin}%/molenc_ligprep.sh"] 14 + ["cp" "bin/molenc_common.py" "%{bin}%/molenc_common.py"] 15 + ["cp" "bin/molenc_lean.py" "%{bin}%/molenc_lean.py"] 16 + ["cp" "bin/molenc_lizard.py" "%{bin}%/molenc_lizard.py"] 17 + ["cp" "bin/molenc_scan.py" "%{bin}%/molenc_scan.py"] 18 + ["cp" "bin/molenc_scan.sh" "%{bin}%/molenc_scan.sh"] 19 + ["cp" "bin/molenc_type_atoms.py" "%{bin}%/molenc_type_atoms.py"] 20 + ["cp" "bin/smi2png.py" "%{bin}%/molenc_smi2png.py"] 21 + ["cp" "bin/molenc_smisur.py" "%{bin}%/molenc_smisur.py"] 22 + ["cp" "bin/molenc_panascan.py" "%{bin}%/molenc_panascan.py"] 23 + ["cp" "bin/molenc_scaffold.py" "%{bin}%/molenc_scaffold.py"] 24 + ["cp" "bin/molenc_deepsmi.py" "%{bin}%/molenc_deepsmi.py"] 25 + ["cp" "bin/molenc_lead.py" "%{bin}%/molenc_lead.py"] 26 + ["cp" "bin/molenc_drug.py" "%{bin}%/molenc_drug.py"] 27 + ["cp" "bin/molenc_smi2cansmi.py" "%{bin}%/molenc_smi2cansmi.py"] 28 + ["cp" "bin/molenc_std.py" "%{bin}%/molenc_std.py"] 29 + ["cp" "bin/molenc_padel.py" "%{bin}%/molenc_padel.py"] 30 + ["cp" "bin/molenc_rotbond.py" "%{bin}%/molenc_rotbond.py"] 31 + ["cp" "bin/molenc_mview.py" "%{bin}%/molenc_mview.py"] 32 + ["cp" "bin/molenc_HA.py" "%{bin}%/molenc_HA.py"] 33 + ["cp" "bin/molenc_sdf2smi.py" "%{bin}%/molenc_sdf2smi.py"] 34 + ["cp" "bin/molenc_atoms_filter.py" "%{bin}%/molenc_atoms_filter.py"] 35 + ["cp" "bin/molenc_gpr.py" "%{bin}%/molenc_gpr.py"] 36 + ["cp" "bin/molenc_stable.py" "%{bin}%/molenc_stable.py"] 37 + ["cp" "bin/molenc_thash.py" "%{bin}%/molenc_thash.py"] 38 + ["cp" "bin/molenc_SA.py" "%{bin}%/molenc_SA.py"] 39 + ["cp" "bin/fpscores.pkl.gz" "%{bin}%/fpscores.pkl.gz"] # molenc_SA.py's data 40 + ] 41 + depends: [ 42 + "batteries" {>= "3.5.0"} 43 + "bst" {>= "2.0.0"} 44 + "conf-graphviz" 45 + "conf-python-3" 46 + "conf-rdkit" 47 + "cpm" {>= "9.0.0"} 48 + "dokeysto" 49 + "dolog" {>= "5.0.0"} 50 + "dune" {>= "1.11"} 51 + "line_oriented" {>= "1.2.0"} 52 + "minicli" {>= "5.0.0"} 53 + "ocaml" {>= "5.1.0"} 54 + "ocamlgraph" 55 + "parany" {>= "12.1.1"} 56 + "vector3" 57 + "pyml" {>= "20211015"} 58 + ] 59 + available: arch != "arm32" & arch != "x86_32" 60 + synopsis: "Molecular encoder/featurizer using rdkit and OCaml" 61 + description: """Chemical fingerprints are lossy encodings of molecules. 62 + molenc allows to encode molecules using unfolded-counted fingerprints 63 + (i.e. a potentially very long but sparse vector of positive integers). 64 + 65 + Currently, Faulon fingerprints and atom pairs are supported. 66 + 67 + Currently, atom types are the quadruplet 68 + (#pi-electrons, element symbol, #HA neighbors, formal charge). 69 + In the future, pharmacophore features might be supported (a more abstract/fuzzy 70 + atom typing scheme). 71 + 72 + Bibliography: 73 + ============= 74 + 75 + Faulon, J. L., Visco, D. P., & Pophale, R. S. (2003). 76 + The signature molecular descriptor. 77 + 1. Using extended valence sequences in QSAR and QSPR studies. 78 + Journal of chemical information and computer sciences, 43(3), 707-720. 79 + 80 + Carhart, R. E., Smith, D. H., & Venkataraghavan, R. (1985). 81 + Atom pairs as molecular features in structure-activity studies: 82 + definition and applications. 83 + Journal of Chemical Information and Computer Sciences, 25(2), 64-73. 84 + 85 + Kearsley, S. K., Sallamack, S., Fluder, E. M., Andose, J. D., Mosley, R. T., & 86 + Sheridan, R. P. (1996). 87 + Chemical similarity using physiochemical property descriptors. 88 + Journal of Chemical Information and Computer Sciences, 36(1), 118-127. 89 + 90 + OpenSMILES specification. Craig A. James et. al. v1.0 2016-05-15. 91 + http://opensmiles.org/opensmiles.html 92 + """ 93 + url { 94 + src: 95 + "https://github.com/UnixJunkie/molenc/archive/refs/tags/v17.0.1.tar.gz" 96 + checksum: [ 97 + "sha256=dee16015c4088cc4a690bfeb5afc4fe4869540bf7e2a998ae3ca8094023728ae" 98 + ] 99 + }