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_compare" {>= "v0.12" & < "v0.15"} 15 "ppx_fields_conv" {>= "v0.12" & < "v0.15"} 16 "ppx_sexp_conv" {>= "v0.12" & < "v0.15"} 17 "stdio" {>= "v0.12" & < "v0.15"} 18 "ppx_assert" {>= "v0.12" & with-test} 19 "core_kernel" {>= "v0.12" & with-test} 20 "ppx_expect" {>= "v0.12" & with-test} 21 "ppx_inline_test" {>= "v0.12" & with-test} 22 "re2" {>= "v0.12" & with-test} 23 "bisect_ppx" {dev} 24 "core" {>= "v0.12" & dev} 25 "core_bench" {>= "v0.12" & dev} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test & arch != "x86_32"} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/mooreryan/bio_io.git" 43url { 44 src: "https://github.com/mooreryan/bio_io/archive/0.4.0.tar.gz" 45 checksum: [ 46 "md5=1ad5b1585a190ea0973e52526c3f60a6" 47 "sha512=9190ba4a5bf128a035adf71b7e4269314415946056b34cb799cdca26c0272d087bf109fdaf19b6962c78d5410a0361e046a9c28b5614502f3ff8f0764d89862d" 48 ] 49}