From f1a4a63d370f0afdce6420d1011277b30fbdc4ff Mon Sep 17 00:00:00 2001 From: Erick Navarro Date: Tue, 17 Feb 2026 13:04:28 -0800 Subject: [PATCH] Added rOpenSci badge --- README.Rmd | 1 + README.md | 2 ++ vignettes/RAMEN.Rmd | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.Rmd b/README.Rmd index 8f73f3e..1b14d95 100644 --- a/README.Rmd +++ b/README.Rmd @@ -21,6 +21,7 @@ knitr::opts_chunk$set( [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) [![Codecov test coverage](https://codecov.io/gh/ErickNavarroD/RAMEN/graph/badge.svg)](https://app.codecov.io/gh/ErickNavarroD/RAMEN) [![R-CMD-check](https://github.com/ErickNavarroD/RAMEN/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ErickNavarroD/RAMEN/actions/workflows/R-CMD-check.yaml) +[![Status at rOpenSci Software Peer Review](https://badges.ropensci.org/743_status.svg)](https://github.com/ropensci/software-review/issues/743) ## Overview diff --git a/README.md b/README.md index 1aa3a23..220fb00 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https:// [![Codecov test coverage](https://codecov.io/gh/ErickNavarroD/RAMEN/graph/badge.svg)](https://app.codecov.io/gh/ErickNavarroD/RAMEN) [![R-CMD-check](https://github.com/ErickNavarroD/RAMEN/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ErickNavarroD/RAMEN/actions/workflows/R-CMD-check.yaml) +[![Status at rOpenSci Software Peer +Review](https://badges.ropensci.org/743_status.svg)](https://github.com/ropensci/software-review/issues/743) ## Overview diff --git a/vignettes/RAMEN.Rmd b/vignettes/RAMEN.Rmd index 984e854..6559754 100644 --- a/vignettes/RAMEN.Rmd +++ b/vignettes/RAMEN.Rmd @@ -504,7 +504,7 @@ Saving the data frames produced by RAMEN might seem difficult because it has lis data.table::fwrite(selected_variables, file = "path/selected_variables.csv") # Read the csv file and make lists the elements in the required columns -selected_variables <- fread("path/selected_variables.csv", data.table = FALSE) %>% +selected_variables <- fread("path/selected_variables.csv", data.table = FALSE) %>% mutate( selected_genot = str_split(selected_genot, pattern = "\\|"), # fwrite saves lists as strings separated by |, so we need to splut them selected_env = str_split(selected_env, pattern = "\\|"),