|
|
|
How to import records into an Arb database.
|
Copy and paste the following text (or modification thereof) to
a text only file called "greengenes.ift" and place it in ../arb/lib/import/. For more
instructions on how to keep a personal arb database current with the greengenes data set
read more ...
AUTODETECT "BEGIN*"
BEGIN "BEGIN*"
MATCH "prokMSA_id\=*"
SRT "*\=="
WRITE "name"
MATCH "prokMSAname\=*"
SRT "*\=="
WRITE "full_name"
MATCH "strain\=*"
SRT "*\=="
WRITE "strain"
MATCH "ncbi_acc_w_ver\=*"
SRT "*\=="
WRITE "acc"
MATCH "authors\=*"
SRT "*\=="
WRITE "author"
MATCH "title\=*"
SRT "*\=="
WRITE "title"
MATCH "journal\=*"
SRT "*\=="
WRITE "journal"
MATCH "description\=*"
SRT "*\=="
WRITE "description"
MATCH "organism\=*"
SRT "*\=="
WRITE "organism"
MATCH "clone\=*"
SRT "*\=="
WRITE "clone"
MATCH "isolate\=*"
SRT "*\=="
WRITE "isolate"
MATCH "isolation_source\=*"
SRT "*\=="
WRITE "isolation_source"
MATCH "decision\=*"
SRT "*\=="
WRITE "sequence_type"
MATCH "ncbi_gi\=*"
SRT "*\=="
WRITE "ncbi_gi"
MATCH "ncbi_taxon_id\=*"
SRT "*\=="
WRITE "ncbi_taxon_id"
MATCH "prokMSA_id\=*"
SRT "*\=="
WRITE "greengenes_id"
MATCH "ncbi_tax_string\=*"
SRT "*\=="
WRITE "ncbi_tax"
MATCH "ncbi_seq_length\=*"
SRT "*\=="
WRITE "ncbi_seq_length"
MATCH "Hugenholtz_tax_string\=*"
SRT "*\=="
WRITE "Hugenholtz_tax"
MATCH "G2_chip_tax_string\=*"
SRT "*\=="
WRITE "Phylochip_tax"
MATCH "Ludwig_tax_string\=*"
SRT "*\=="
WRITE "Ludwig_tax"
MATCH "Pace_tax_string\=*"
SRT "*\=="
WRITE "Pace_tax"
MATCH "RDP_tax_string\=*"
SRT "*\=="
WRITE "RDP_tax"
MATCH "source\=*"
SRT "*\=="
WRITE "source"
MATCH "specific_host\=*"
SRT "*\=="
WRITE "specific_host"
MATCH "note\=*"
SRT "*\=="
WRITE "note"
MATCH "country\=*"
SRT "*\=="
WRITE "country"
MATCH "db_name\=*"
SRT "*\=="
WRITE "IMG_taxon_OID"
MATCH "gold_id\=*"
SRT "*\=="
WRITE "GOLD_stamp"
MATCH "replaced_by\=*"
SRT "*\=="
WRITE "replaced_by"
MATCH "study_id\=*"
SRT "*\=="
WRITE "study_id"
MATCH "core_set_member2\=*"
SRT "*\=="
WRITE "core_seq"
MATCH "contact_info\=*"
SRT "*\=="
WRITE "contact_info"
MATCH "submit_date\=*"
SRT "*\=="
WRITE "submit_date"
MATCH "span_aligned\=*"
SRT "*\=="
WRITE "span_aligned"
MATCH "non_ACGT_percent\=*"
SRT "*\=="
WRITE "percent_non_ACGT"
MATCH "remark\=*"
SRT "*\=="
WRITE "remark"
MATCH "bellerophon\=*"
SRT "*\=="
WRITE "bellerophon"
MATCH "bel3_div_ratio\=*"
SRT "*\=="
WRITE "bel_div_ratio"
MATCH "template\=*"
SRT "*\=="
WRITE "core_template"
MATCH "perc_ident_to_invariant_core\=*"
SRT "*\=="
WRITE "percent_invariant_match"
MATCH "warning\=*"
SRT "*\=="
WRITE "warning"
SEQUENCEAFTER "warning*"
SEQUENCESRT "*\=="
SEQUENCEEND "END"
END "END"
|
|
|
|