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