Skip to content

Tool for filtering BrAPI ObservationUnits and Germplasm by Observation values

Notifications You must be signed in to change notification settings

IntegratedBreedingPlatform/BrAPI-Graphical-Filtering

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BrAPI Graphical Filtering GitHub release GitHub (Pre-)Release Date

  • Try it out here
  • Include-ready version can be found under releases.
  • Also available via npm: npm install @solgenomics/brapi-graphical-filtering

GIF of Example Implementation

Usage

The graphical filter exposes a minimal API for initializing and populating the table. It is designed to rely on BrAPI.

Initializing the graphical filter

Use the following snippets (in order) to fully set up a tree.

  1. Create a new GraphicalFilter object
    var gf = GraphicalFilter(
        // BrAPI search of observationUnits to be displayed
        BrAPI("https://brapi.myserver.org/brapi/v1").phenotypes_search(myparams),
        // Accessor describing traits for each observationUnit (returns object)
        function(d) {
            var traits = {}
            d.observations.forEach(function(obs){
                traits[obs.observationVariableName] = obs.value;
            });
            return traits;
        },
        // Accessor describing extra columns to display in the table (returns object)
        function(d) {
            return {
                'Accession':d.germplasmName
            }
        },
        // Order to display the above columns in (array)
        ["Accession"],
        // key to group observationUnits by in the table (key value or undefined for no grouping)
        function(d) { // groupBy function
            return d.germplasmDbId
        }
    );
  2. Then, draw the filter and table.
    gf.draw(
        // div to draw the filter in
        "#filter_div",
        // table to output filtered data to
        "#filtered_results"
    );

Requirements

Requirements for the Example

About

Tool for filtering BrAPI ObservationUnits and Germplasm by Observation values

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 85.8%
  • HTML 10.1%
  • CSS 4.1%