UofS-Pulse-Binfo / analyzedphenotypes

Tripal/Drupal support for analyzed phenotypic data including data loaders, exporters, trait pages and summaries on germplasm pages.
GNU General Public License v2.0
0 stars 1 forks source link

Trait Pages #61

Closed laceysanderson closed 4 years ago

laceysanderson commented 5 years ago

We need pages for traits. Tripal Core already supports creating content types based on controlled vocabularies where each term in the vocabulary is a page. This supports creating trait pages!

Now we just need some specialized fields:

laceysanderson commented 5 years ago

ncit__method and sio__study are done in branch methods_field.

laceysanderson commented 5 years ago

With local__trait_summary in review, the next field to work on @reynoldtan is NCIT:data (which will replace co_010__accession). The data for this field will consist of an entry for each germplasm with data for this trait and will be based on the mview_phenotype table. It should look like:

[
    {
        'schema:name' => <stock_name>,
        'schema:name' => <experiment_name>,
        'NCIT:year' => <year>,
        'NCIT:location' => <location>,
        'NCIT:data' => <values>,
    }
]

The user will search for a given germplasm and be shown the following table:

Germplasm: CDC Redberry

Experiment Location Year Mean Standard Deviation
Lorem ipsum 2017 34.5 1.2

OR for qualitative data:

Germplasm: CDC Redberry

Experiment Location Year Observed Phenotypes Number of Measurements
Lorem ipsum 2017 W/P 3
laceysanderson commented 4 years ago

All are now complete