package bio_io

  1. Overview
  2. Docs
A library for reading and writing common file formats used in bioinformatics like FASTA files

Install

Dune Dependency

Authors

Maintainers

Sources

0.5.1.tar.gz
md5=6cc64d38a9cba13754cae52db1ade85d
sha512=5008a30225ec306378e282dab2c00d545949be0e778e4b352c5e29012e08f88acef4ed75cf03a55276b657a057355399be3a55ea77d58231a03efc66a03a8b13

Description

Published: 14 Jul 2022

README

Bio_io

Bio_io is an OCaml library that provides programmatic access to common file formats used in bioinformatics like FASTA files.

Quick Start

Install

opam install bio_io

Example

Read a FASTA file and print the ID and sequence length for each record.

open! Base

let fasta_file = "sequences.fasta"

let () =
  (* This open gives you [In_channel] and [Record]. *)
  let open Bio_io.Fasta in
  In_channel.with_file_iter_records_exn fasta_file ~f:(fun record ->
      (* Print the ID and the length of the sequence. *)
      Stdio.printf "%s => %d\n" (Record.id record) (Record.seq_length record))

Docs

For more examples, API, and other usage info, see the docs.

License

Licensed under the Apache License, Version 2.0 or the MIT license, at your option. This program may not be copied, modified, or distributed except according to those terms.

Dependencies (7)

  1. stdio >= "v0.15"
  2. ppx_sexp_conv >= "v0.15"
  3. ppx_fields_conv >= "v0.15"
  4. ppx_compare >= "v0.15"
  5. ocaml >= "4.10"
  6. base >= "v0.15"
  7. dune >= "3.2"

Dev Dependencies (6)

  1. odoc with-doc
  2. re >= "1.10" & with-test
  3. ppx_inline_test >= "v0.15" & with-test
  4. ppx_expect >= "v0.15" & with-test
  5. base_quickcheck >= "v0.15" & with-test
  6. ppx_assert >= "v0.15" & with-test

Used by

None

Conflicts

None