qbms

R package to query Breeding Management System (BMS) database

https://github.com/icarda/qbms

Science Score: 67.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 7 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.4%) to scientific vocabulary
Last synced: 7 months ago · JSON representation ·

Repository

R package to query Breeding Management System (BMS) database

Basic Info
Statistics
  • Stars: 9
  • Watchers: 1
  • Forks: 5
  • Open Issues: 4
  • Releases: 3
Created over 5 years ago · Last pushed 8 months ago
Metadata Files
Readme Changelog License Code of conduct Citation

README.md

QBMS

CRAN checks CRAN version CRAN downloads CRAN monthly DOI CRAN license GitHub commits GitHub issues R badge <!-- badges: end -->

Overview

This R package assists breeders in linking data systems with their analytic pipelines, a crucial step in digitizing breeding processes. It supports querying and retrieving phenotypic and genotypic data from systems like EBS, BMS, BreedBase, GIGWA, and Germinate (using BrAPI calls). Extra helper functions support environmental data sources, including TerraClimate and FAO HWSDv2 soil database.

__Author and Maintainer:_ Khaled Al-Shamaa _

__Contributor:_ Mariano Omar CRIMI _

__Contributor:_ Zakaria Kehel _

__Contributor:_ Johan Aparicio _

__Copyright Holder:_ International Center for Agricultural Research in the Dry Areas (ICARDA)_

BrAPI

The Breeding API (BrAPI) project is an effort to enable interoperability among plant breeding databases. BrAPI is a standardized RESTful web service API specification for communicating plant breeding data. This community driven standard is free to be used by anyone interested in plant breeding data management.

Supported Data Sources

  • BMS: vignette("bms_example").
  • EBS: vignette("ebs_example").
  • Breedbase: vignette("breedbase_example").
  • GIGWA: vignette("gigwa_example").
  • Germinate: vignette("germinate_example").

Extra sub-systems supported:

Installation

r install.packages("QBMS")

Development version

To get a bug fix or to use a feature from the development version, you can install the development version of QBMS from GitHub.

r if (!require("remotes")) install.packages("remotes") remotes::install_github("icarda/QBMS")

Getting Started

Once you successfully install the QBMS R package, you can load it as a library and set up your remote server configuration (e.g., EBS, BMS, BreedBase, or GIGWA) by simply copying and pasting the login page URL from your web browser.

```r

load the QBMS library

library(QBMS)

config your BMS connection (by providing your BMS login page URL)

setqbmsconfig("https://bms.icarda.org/ibpworkbench/controller/auth/login") ```

To start querying and retrieving data from your remote server, you have to login using the same credentials for that server’s GUI/web interface. Please note that you can call the login function(s) with no parameters (interactive mode), where you will get a popup window to insert your username and password (highly advised as one of the best security practices). Although, for automatic analysis pipeline(s) or server services, you can still provide the required username and password as login function parameters (i.e., batch mode).

```r

login using your account (interactive mode)

login_bms()

or pass your username and password as parameters (batch mode)

login_bms("username", "password") ```

You should be careful when sharing your batch mode code to avoid leaking your credential in public or not authorized spaces.

Supporting Multiple Provider Connectors

You can switch between an ongoing QBMS connection and another server/database connection by using get_qbms_connection() and set_qbms_connection() functions, as shown in the following example (i.e., if there is a need to switch forth and back during the same session):

```r

configure QBMS to connect the phenotypics server

setqbmsconfig("https://bms.icarda.org/ibpworkbench/controller/auth/login")

login and retrieve data from the phenotypic server

save current connection (phenotypic server)

con1 <- getqbmsconnection()

configure QBMS to connect the genotypic server

setqbmsconfig("https://gigwa.southgreen.fr/gigwa/", engine = "gigwa", no_auth = TRUE)

retrieve data from the genotypic server

save current connection (before switch)

con2 <- getqbmsconnection()

load the saved phenotypic server connection

setqbmsconnection(con1)

continue retrieving data from the phenotypic server

```

A detailed example is available in the documentation of the get_qbms_connection() and set_qbms_connection() functions.

Also, you can find a more elegant solution developed by Francisco Agosto-Perez from the Breeding Informatics team within the Innovation Lab For Crop Improvement at Cornell University available here: https://github.com/agostof/BrAPI-Provider/

Error and Debugging

If you get unexpected results or weird behavior and want to dig deep and investigate what went wrong, you can get a copy of the internal QBMS variables by calling the debug_qbms() function.

```r dump <- debug_qbms()

dump$config

$crop

[1] "maize"

$server

[1] "https://bms.icarda.org"

$path

[1] "bmsapi"

$page_size

[1] 1000

$time_out

[1] 120

$base_url

[1] "https://bms.icarda.org/bmsapi"

$engine

[1] "bms"

names(dump$state)

[1] "token" "programdbid" "trialdbid" "studydbid" "user"

[6] "expires_in" "errors" ...

dump$state$token

[1] "username:1666907125029:a312bb036cc8d9cc302bee1f0981e5ab"

```

Troubleshooting the Installation

  1. If the installation of QBMS generates errors saying that some of the existing packages cannot be removed, you can try to quit any R session, and try to start R in administrator (Windows) or SUDO mode (Linux/Ubuntu) then try installing again.

  2. If you get an error related to packages built under a current version of R, and updating your packages doesn’t help, you can consider overriding the error with the following code. Note: This might help you install QBMS but may result in other problems. If possible, it’s best to resolve the errors rather than ignoring them.

```r Sys.setenv("RREMOTESNOERRORSFROM_WARNINGS" = TRUE)

remotes::install_github("icarda/QBMS", upgrade = "always") ```

  1. If you get an error related to list or set runs in GIGWA (i.e., gigwa_list_runs() and gigwa_set_run() functions), you can try to ensure that your R session system locale is using UTF-8 character set encoding. You may consider overwriting your system locale with the following command to resolve this issue:

r Sys.setlocale("LC_ALL", "English_United States.utf8")

  1. If the get_terraclimate() function takes a long time to run and the progress bar stays at 0%, it might be due to using an outdated version of the R language. Make sure you're using the latest version. For more details, please refer to this GitHub issue.

References

Owner

  • Name: International Center for Agricultural Research in the Dry Areas (ICARDA)
  • Login: icarda
  • Kind: organization
  • Email: icarda-comms@cgiar.org
  • Location: Lebanon

Advancing agricultural science and innovation to improve the livelihoods and resilience of communities in dry areas across the globe.

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software in your work, please cite it using the metadata below."
title: "QBMS: Query the Breeding Management System(s)"
version: "2.0.0"
# doi: "10.32614/CRAN.package.QBMS"
doi: 10.5281/zenodo.10791626
authors:
  - family-names: Al‑Shamaa
    given-names: Khaled
    affiliation: ICARDA
    orcid: https://orcid.org/0000-0002-7668-3798
  - family-names: Crimi
    given-names: Mariano Omar
    affiliation: IBP
  - family-names: Kehel
    given-names: Zakaria
    affiliation: ICARDA
    orcid: https://orcid.org/0000-0002-1625-043X
  - family-names: Aparicio
    given-names: Johan
    affiliation: CIAT
    orcid: https://orcid.org/0000-0003-3580-5354
date-released: "2025-08-02"
repository-code: https://github.com/icarda-git/QBMS
url: https://icarda-git.github.io/QBMS/
license: GPL‑3.0

GitHub Events

Total
  • Push event: 14
Last Year
  • Push event: 14

Packages

  • Total packages: 1
  • Total downloads:
    • cran 488 last-month
  • Total docker downloads: 21,613
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 8
  • Total maintainers: 1
cran.r-project.org: QBMS

Query the Breeding Management System(s)

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 488 Last month
  • Docker Downloads: 21,613
Rankings
Docker downloads count: 0.6%
Forks count: 12.2%
Stargazers count: 20.6%
Average: 21.0%
Dependent repos count: 23.8%
Dependent packages count: 28.6%
Downloads: 40.3%
Maintainers (1)
Last synced: 8 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.1.0 depends
  • httr * imports
  • jsonlite * imports
  • ncdf4 * imports
  • stats * imports
  • tcltk * imports
  • utils * imports
  • knitr * suggests
  • rmarkdown * suggests