Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
A record type for Btab homology search files
Unlike the Btab
module, the query sequence is the basis for the record.
All hits are grouped by the query sequence. For example, in a btab file with query-target pairs, q1-t1, q1-t2, q2-t2
then you will have two records. One for q1
and one for q2
.
val sexp_of_t : t -> Sexplib0.Sexp.t
val create : Base.string -> Btab.Record.t Base.list -> t
create query_name hit_list
creates a t
given the name of the query and a list of hits. You probably won't use this function directly.
val query : t -> Base.string
query t
returns the name of the query for this record (i.e., for the list of hits).
val hits : t -> Btab.Record.t Base.list
hits t
returns the list of hits associated with this query sequence.