this repo has no description
1opam-version: "2.0" 2synopsis: 3 "A library for reading and writing common file formats used in bioinformatics like FASTA files" 4maintainer: "Ryan Moore" 5authors: "Ryan Moore" 6license: "MIT" 7homepage: "https://github.com/mooreryan/bio_io" 8doc: "https://mooreryan.github.io/bio_io/" 9bug-reports: "https://github.com/mooreryan/bio_io/issues" 10depends: [ 11 "dune" {>= "2.9"} 12 "bisect_ppx" {dev} 13 "core" {>= "v0.12" & dev} 14 "core_bench" {>= "v0.12" & dev} 15 "core_kernel" {>= "v0.12" & < "v0.15"} 16 "ppx_sexp_conv" {>= "v0.12" & < "v0.15"} 17 "ocaml" {>= "4.08.0"} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "--promote-install-files" 30 "false" 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35 ["dune" "install" "-p" name "--create-install-files" name] 36] 37dev-repo: "git+https://github.com/mooreryan/bio_io.git" 38url { 39 src: "https://github.com/mooreryan/bio_io/archive/0.1.2.tar.gz" 40 checksum: [ 41 "md5=561772cfc093c5070692fc8888539582" 42 "sha512=544309855972b100fe8fd3ca828757fa74204a8c9f2201e5b1985df558e2e8fc4bc86e87979b4c53db18929581043837c13c63c35a1ba9a112e905a01d4febc7" 43 ] 44}