Description Usage Arguments Value Note Author(s) References See Also Examples
View source: R/ba_studies_germplasm_details.R
Gets germplasm details for a specific study available on a brapi server.
1 2 3  | ba_studies_germplasm_details(con = NULL, studyDbId = "",
  pageSize = 1000, page = 0, rclass = c("tibble", "data.frame",
  "list", "json"))
 | 
con | 
 list, brapi connection object  | 
studyDbId | 
 character, the internal database identifier for a study of which the germplasm details are to be retrieved e.g. "1001"; REQUIRED ARGUMENT with default: ""  | 
pageSize | 
 integer, items per page to be returned; default: 1000  | 
page | 
 integer, the requested page to be returned; default: 0 (1st page)  | 
rclass | 
 character, class of the object to be returned; default: "tibble" , possible other values: "json"/"list"/"data.frame"  | 
An object of class as defined by rclass containing the germplasm details for a requested study.
Tested against: sweetpotatobase, test-server
BrAPI Version: 1.0, 1.1, 1.2
BrAPI Status: active
Reinhard Simon, Maikel Verouden
Other studies: ba_phenotypes_search,
ba_studies_details,
ba_studies_layout,
ba_studies_observationlevels,
ba_studies_observations,
ba_studies_observationunits,
ba_studies_observationvariables,
ba_studies_search_post,
ba_studies_search,
ba_studies_seasons,
ba_studies_studytypes,
ba_studies_table_save,
ba_studies_table
Other germplasm: ba_germplasm_breedingmethods,
ba_germplasm_details_study,
ba_germplasm_details,
ba_germplasm_markerprofiles,
ba_germplasm_pedigree,
ba_germplasm_progeny,
ba_germplasm_search_post,
ba_germplasm_search
Other brapicore: ba_calls,
ba_commoncropnames, ba_crops,
ba_germplasm_details_study,
ba_germplasm_details,
ba_germplasm_pedigree,
ba_germplasm_progeny,
ba_germplasm_search_post,
ba_germplasm_search,
ba_observationvariables_datatypes,
ba_observationvariables_details,
ba_observationvariables_ontologies,
ba_observationvariables,
ba_phenotypes_search_post,
ba_programs_search_post,
ba_programs,
ba_traits_details, ba_traits
1 2 3 4 5 6 7  | if (interactive()) {
  library(brapi)
  con <- ba_db()$testserver
  ba_studies_germplasm_details(con = con, studyDbId = "1001")
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.