Postagens de Rogue Scholar

language
Publicados in rOpenSci - open tools for open science

import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.esm.min.mjs'; mermaid.initialize({ startOnLoad: true }); For the better part of a year, I have been looking for an opportunity to use the rOpenSci package deposits in myrole as the Data Librarian at EcoHealth Alliance.I had done some initial testing with Mark Padgham, the brilliant person who developed this package, but there weren’t any projects ready for me to put

Publicados in Critical Metascience
Autor Mark Rubin

An often overlooked source of the “replication crisis” is the tendency to treat the replication study as a definitive verdict while ignoring the statistical uncertainty inherent in both the original and replication studies. This simplistic view fosters misleading dichotomies and erodes public trust in science.

Publicados in Epiverse-TRACE developer space
Autor Hugo Gruson

Throughout the Epiverse project, we use the renv R package to ensure reproducibility of the training materials and the pipelines we are providing. But we sometimes get reports from users who struggle to rebuild the environment and run the code. In this post, we dissect the source of these issues, explain why in reality renv is not at fault, and how this is caused by the inherent complexity of reproducibility.

Publicados in Biopragmatics
Autor Charles Tapley Hoyt

The Unified Medical Language System (UMLS) is a widely used biomedical and clinical vocabulary maintained by the United States National Library of Medicine. However, it is notoriously difficult to access and work with due to licensing restrictions and its complex download system. In the same vein as my previous posts about DrugBank and ChEMBL, this post describes open source software I’ve developed for downloading and working with this data.

Publicados in Biopragmatics
Autor Charles Tapley Hoyt

I’ve been working on improving reproducibility in the field of cheminformatics for some time now. For example, I’ve written posts about making data from DrugBank and ChEMBL more actionable. Over the last year, I’ve been preparing a concept with the editors of the Journal of Cheminformatics on how to include an assessment of reproducibility to reviews of manuscripts submitted to the journal.

Publicados in GigaBlog

At GigaScience we see more and more of our published papers use computational workflows, as they provides researchers easy access to high-quality analysis methods without the requirement of computational expertise. However, systems are needed to enable the sharing of these workflows in a reusable form.

Publicados in rOpenSci - open tools for open science
Autor Jeroen Ooms

What is renv RStudio’s renv package is a powerful dependency management toolkit for R. It allows you to create a lockfile that records the exact versions of R packages used in a given project, and provides tooling to install exactly those same versions on another machine, or at a later point in time. This is very useful to create an isolated project environment for reproducibility or production purposes.