package biotk

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file ncbi_genome.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
open Base

module Assembly_summary = struct
  type t = {
    assembly_accession : string ;
    bioproject : string ;
    biosample : string ;
    wgs_master : string ;
    refseq_category : string ;
    taxid : string ;
    species_taxid : string ;
    organism_name : string ;
    infraspecific_name : string ;
    isolate : string ;
    version_status : string ;
    assembly_level : string ;
    release_type : string ;
    genome_rep : string ;
    seq_rel_date : string ;
    asm_name : string ;
    submitter : string ;
    gbrs_paired_asm : string ;
    paired_asm_comp : string ;
    ftp_path : string ;
    excluded_from_refseq : string ;
    relation_to_type_material : string ;
  }
  [@@deriving fields, csv]
end

let refseq_assembly_summary_url = "ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/assembly_summary_refseq.txt"
OCaml

Innovation. Community. Security.