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.8"} 12 "base" {>= "v0.12"} 13 "ocaml" {>= "4.08.0"} 14 "ppx_sexp_conv" {>= "v0.12" & < "v0.15"} 15 "stdio" {>= "v0.12" & < "v0.15"} 16 "ppx_expect" {>= "v0.12" & with-test} 17 "ppx_inline_test" {>= "v0.12" & with-test} 18 "bisect_ppx" {dev} 19 "core" {>= "v0.12" & dev} 20 "core_bench" {>= "v0.12" & dev} 21 "odoc" {with-doc} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/mooreryan/bio_io.git" 38url { 39 src: "https://github.com/mooreryan/bio_io/archive/0.2.1.tar.gz" 40 checksum: [ 41 "md5=d12adec17d0514b35ff786e858bc2b35" 42 "sha512=1824fdfd2e835907d73caab8f1e95deab8e8256eb5851d4a620ff0d76d2eb0c1fc75e5951d7646fcd23b936393010f558681a0f8f596514b8ea25b8bf0867298" 43 ] 44}