-
Notifications
You must be signed in to change notification settings - Fork 0
Core Project Extensions
Robert J. Gifford edited this page Oct 12, 2024
·
6 revisions
Flavivirus-GLUE extends GLUE's core schema by incorporating additional fields in the sequence table and a project-specific custom table called 'isolate'. The isolate table links to the main 'sequence' table and contains information about viral isolates, including species, date, and location of sampling.
Schema extensions are defined here.
The sequence table of GLUE's core schema was extended to include the following additional fields:
Parameter | Type | Definition |
---|---|---|
full_name | VARCHAR | Full name of the virus this sequence is derived from |
name | VARCHAR | Abbreviated name of the virus this sequence is derived from |
gb_create_date | GenBank | GenBank creation date of the sequence |
gb_update_date | VARCHAR | Date of most recent GenBank update |
subfamily | VARCHAR | Taxonomy - virus subfamily |
genus | VARCHAR | Taxonomy - virus genus |
subgenus | VARCHAR | Taxonomy - virus subgenus |
clade | VARCHAR | Taxonomy - virus clade |
length | INTEGER | Length of the sequence |
pubmed_id | INTEGER | PubMed ID of manuscript associated with GenBank entry |
A custom table was defined to capture isolate-associated information, as follows:
Parameter | Type | Definition |
---|---|---|
isolate | VARCHAR | Name of the isolate |
host_sci_name | VARCHAR | Scientific name of the isolation species |
country | VARCHAR | Country where virus was isolated |
country_iso | VARCHAR | ISO code of country where virus was isolated |
place_sampled | VARCHAR | Location of sampling (state, region, or city) |
collection_year | INTEGER | Year virus was isolated |
collection_month | VARCHAR | Month virus was isolated |
collection_month_day | INTEGER | Day of month virus was isolated |