module Biocaml_sam: sig .. end
SAM files.
exception Bad of string
type record_type_code = string
String is exactly three characters, matching the regular
expression '@A-Za-zA-Za-z'.
=
= header_line list
type alignment = {
|
qname : string; |
|
flag : int; |
|
rname : string; |
|
pos : int; |
|
mapq : int; |
|
cigar : string; |
|
rnext : string; |
|
pnext : int; |
|
tlen : int; |
|
seq : string; |
|
qual : string; |
|
optional : (string * char * string) list; |
}
: header_line -> string
val enum_file : string -> header * alignment Batteries.Enum.t
: header_line -> string
: header -> string
val alignment_to_string : alignment -> string