module Make:functor (
F
:
Fetch
) ->
sig
module Gene_ref:
sig
type
t = {
}
locus :
string option
;
allele :
string option
;
desc :
string option
;
maploc :
string option
;
pseudo :
bool option
;
db :
Biocaml_entrez.Make.Dbtag.t list
;end
module PubmedSummary:
sig
type
t = {
}
pmid :
int
;
doi :
string option
;
pubdate :
string option
;
source :
string option
;
title :
string
;end
module Pubmed:
sig
end
module Gene:
sig
type
t = {
}
_type :
[ `miscRNA
;
| `ncRNA
| `other
| `protein_coding
| `pseudo
| `rRNA
| `scRNA
| `snRNA
| `snoRNA
| `tRNA
| `transposon
| `unknown ]
summary :
string option
;
gene :
Biocaml_entrez.Make.Gene_ref.t
;end
end
Parameters: |
|