dartr

Importing and Analysing DArT type snp and silicodart data

https://github.com/green-striped-gecko/dartr

Science Score: 59.0%

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

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 5 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
    5 of 13 committers (38.5%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.3%) to scientific vocabulary
Last synced: 7 months ago · JSON representation

Repository

Importing and Analysing DArT type snp and silicodart data

Basic Info
  • Host: GitHub
  • Owner: green-striped-gecko
  • License: gpl-3.0
  • Language: R
  • Default Branch: master
  • Size: 137 MB
Statistics
  • Stars: 34
  • Watchers: 9
  • Forks: 22
  • Open Issues: 22
  • Releases: 2
Created about 9 years ago · Last pushed about 1 year ago
Metadata Files
Readme Contributing Code of conduct Codemeta

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```

# `dartR` 
## An accessible genetic analysis platform for conservation, ecology and agriculture


Main repository: 
[![](https://www.r-pkg.org/badges/version/dartR?color=blue)](https://cran.r-project.org/package=dartR)
[![CRAN checks](https://cranchecks.info/badges/summary/dartR)](https://cran.r-project.org/web/checks/check_results_dartR.html)
[![R-CMD-check](https://github.com/green-striped-gecko/dartR/workflows/R-CMD-check/badge.svg)](https://github.com/green-striped-gecko/dartR/actions)
[![R-CMD-check-beta](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-beta.yaml/badge.svg?branch=beta)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-beta.yaml)
 [![](http://cranlogs.r-pkg.org/badges/last-week/dartR?color=orange)](https://cran.r-project.org/package=dartR)


Publication:
[![](https://img.shields.io/badge/doi-10.1111/1755--0998.12745-00cccc.svg)](https://doi.org/10.1111/1755-0998.12745)
 
Zenodo: 
[![DOI](https://zenodo.org/badge/86640709.svg)](https://zenodo.org/badge/latestdoi/86640709)  


Dev repositories: 
[![R-CMD-check-dev](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev.yaml/badge.svg?branch=dev)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev.yaml)
[![R-CMD-check-dev_Arthur](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Arthur.yaml/badge.svg?branch=dev_arthur)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Arthur.yaml)
[![R-CMD-check-dev_Bernd](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Bernd.yaml/badge.svg?branch=dev_bernd)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Bernd.yaml)
[![R-CMD-check-dev_Luis](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Luis.yaml/badge.svg?branch=dev_luis)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Luis.yaml)
[![R-CMD-check-dev_Carlo](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Carlo.yaml/badge.svg?branch=dev_carlo)](https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Carlo.yaml)


## Overview

`dartR` is a user-friendly R package that delivers a variety of analyses and pipelines on the same platform, as well as excellent user support via high-quality tutorials and documentation.

`dartR` is a collaboration between the University of Canberra, CSIRO, Diversity Arrays Technology and Monash University , and is supported with funding from the ACT Priority Investment Program, CSIRO and the University of Canberra.

               

## Installation `dartR` is on CRAN, so to install it simply type: ```{r, eval = FALSE} install.packages("dartR") ``` Because of CRAN limitations, the default installation does not include all packages needed to run all the functions; hence, specialised analyses need the installation of additional packages. The following code guarantees that all necessary packages for all `dartR` analyses are set up and ready to go. ```{r, eval = FALSE} gl.install.vanilla.dartR() ``` You can install the development version of `dartR` from GitHub with: ``` {r, eval = FALSE} gl.install.vanilla.dartR(flavour = "dev") ``` Please consult [this installation tutorial][installation_tutorial] if you run into any problems during setup. ## Usage `dartR` provides several functions for handling all the steps involved in genetic data analysis, from reading multiple data input formats to manipulating, filtering, exploring and analysing the data.

We use the prefix ‘gl’ in function names to acknowledge the use of the genlight object from package [adegenet][adegenet] as our input format. In most cases, the following term in the function name indicates a subset of functions. Similarly, in most cases the first function parameter (input) is the genlight object. For instance, you might use the code below to generate a report and then filter your data based on the percentage of missing data: ```{r, eval = FALSE} library(dartR) test <- platypus.gl rep <- gl.report.callrate(test) test_1 <- gl.filter.callrate(test) ``` ## Getting started 1. Are you a R rookie? If you want to learn R and RStudio without any fuss, have a look at our [R-refresher tutorial][intro_tutorial]. 2. Let's get started by reading your genetic data into `dartR`; if you have DArT data, follow [this tutorial][input_tutorial_1]; if not, follow [this one][input_tutorial_2]. 3. Checking out our [data manipulation tutorial][data_tutorial] is the easiest way to get your feet wet with `dartR`. 4. [This tutorial][filtering_tutorial] will provide some pointers on how to filter your data effectively, an important step that depends on making sound threshold assessments. 5. Check out our [simulations tutorial][sim_tutorial] to learn more about our simulation model, a powerful tool for illuminating intricate evolutionary and genetic processes. 6. In more advanced topics, check our technical notes on [Genetic Distances and their Visualization in Population Genetics][tech_note_distances] and [Fixed Difference Analysis][tech_notes_fixed_differences]. ## Getting help 1. Google groups Q&A forum in support of users can be accessed [here][google_groups]. 2. The [RStudio community][community] provides a welcoming environment in which to ask any inquiry. 3. Answers to frequently asked topics may usually be found on [Stack Overflow][so]. ## Contribute If you want to help shape the future of `dartR`, [this tutorial][developer_tutorial] is for you. ## Citation Please acknowledge `dartR` if you use it in your study. Copy and paste the following code to the R console to retrieve the citation information: ```{r, eval = FALSE} citation("dartR") ``` Check out our [articles][articles] and our [awards][awards]. Have fun working with `dartR`! Cheers, Bernd, Arthur, Luis, Carlo, Olly & Diana [intro_tutorial]: http://georges.biomatix.org/storage/app/media/uploaded-files/Tutorial_1_dartR_RStudio_Refresher_22-Dec-21.pdf [input_tutorial_1]: http://georges.biomatix.org/storage/app/media/uploaded-files/tutorial3adartrdatastructuresandinput22-dec-21-2.pdf [input_tutorial_2]: http://georges.biomatix.org/storage/app/media/uploaded-files/tutorial3bdartrdatastructuresandinputfromsourcesotherthandartlmagv2-2.pdf [data_tutorial]: http://georges.biomatix.org/storage/app/media/uploaded-files/tutorial4dartrdatamanipulation22-dec-21-3.pdf [filtering_tutorial]: http://georges.biomatix.org/storage/app/media/uploaded-files/tutorial5dartrbasicfiltering22-dec-21-2.pdf [developer_tutorial]: http://georges.biomatix.org/storage/app/media/uploaded-files/Tutorial_0_dartR_for_the_Developer_2.0_19-Feb-22.pdf [installation_tutorial]: https://github.com/green-striped-gecko/dartR/wiki/Installation-tutorial [sim_tutorial]: https://github.com/green-striped-gecko/dartR/wiki/Simulations-tutorial [google_groups]: https://groups.google.com/g/dartr?pli=1 [community]: https://community.rstudio.com/ [so]: https://stackoverflow.com/questions/tagged/r [adegenet]: https://doi.org/10.1093/bioinformatics/btn129 [articles]: https://github.com/green-striped-gecko/dartR/wiki/dartR-team-publications [awards]: https://github.com/green-striped-gecko/dartR/wiki/dartR-awards [tech_note_distances]: http://georges.biomatix.org/storage/app/media/uploaded-files/TECHNICAL_NOTE_Genetic_Distance_18-Feb-22.pdf [tech_notes_fixed_differences]: http://georges.biomatix.org/storage/app/media/uploaded-files/TechNote_fixed_difference_analysis_25-Feb-22.pdf

Owner

  • Name: Bernd Gruber
  • Login: green-striped-gecko
  • Kind: user

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "identifier": "dartR",
  "description": "Functions are provided that facilitate the import and analysis of SNP (single nucleotide polymorphism) and silicodart (presence/absence) data. The main focus is on data generated by DarT (Diversity Arrays Technology). However, once SNP or related fragment presence/absence data from any source is imported into a genlight object many of the functions can be used. Functions are available for input and output of SNP and silicodart data, for reporting on and filtering on various criteria (e.g. CallRate, Heterozygosity, Reproducibility, maximum allele frequency). Advanced filtering is based on Linkage Disequilibrium and HWE (Hardy-Weinberg equilibrium). Other functions are available for visualization after PCoA (Principle Coordinate Analysis), or to facilitate transfer of data between genlight/genind objects and newhybrids, related, phylip, structure, faststructure packages.",
  "name": "dartR: Importing and Analysing SNP and Silicodart Data Generated by\n        Genome-Wide Restriction Fragment Analysis",
  "codeRepository": "https://github.com/green-striped-gecko/dartR",
  "license": "https://spdx.org/licenses/GPL-3.0",
  "version": "2.3",
  "programmingLanguage": {
    "@type": "ComputerLanguage",
    "name": "R",
    "url": "https://r-project.org"
  },
  "runtimePlatform": "R version 4.1.2 (2021-11-01)",
  "provider": {
    "@id": "https://cran.r-project.org",
    "@type": "Organization",
    "name": "Comprehensive R Archive Network (CRAN)",
    "url": "https://cran.r-project.org"
  },
  "author": [
    {
      "@type": "Person",
      "givenName": "Bernd",
      "familyName": "Gruber",
      "email": "bernd.gruber@canberra.edu.au"
    },
    {
      "@type": "Person",
      "givenName": "Arthur",
      "familyName": "Georges",
      "email": "georges@aerg.edu.au"
    },
    {
      "@type": "Person",
      "givenName": "Jose L.",
      "familyName": "Mijangos",
      "email": "Luis.MijangosAraujo@canberra.edu.au"
    },
    {
      "@type": "Person",
      "givenName": "Carlo",
      "familyName": "Pacioni",
      "email": "carlo.pacioni@delwp.vic.gov.au"
    }
  ],
  "contributor": [
    {
      "@type": "Person",
      "givenName": "Peter J.",
      "familyName": "Unmack",
      "email": "peter.mail2@unmack.net"
    },
    {
      "@type": "Person",
      "givenName": "Oliver",
      "familyName": "Berry",
      "email": "oliver.berry@csiro.au"
    },
    {
      "@type": "Person",
      "givenName": "Lindsay V.",
      "familyName": "Clark",
      "email": "lvclark@illinois.edu"
    },
    {
      "@type": "Person",
      "givenName": "Floriaan",
      "familyName": "Devloo-Delva",
      "email": "Floriaan.Devloo-Delva@csiro.au"
    },
    {
      "@type": "Person",
      "givenName": "Eric",
      "familyName": "Archer",
      "email": "eric.archer@noaa.gov"
    }
  ],
  "maintainer": [
    {
      "@type": "Person",
      "givenName": "Bernd",
      "familyName": "Gruber",
      "email": "bernd.gruber@canberra.edu.au"
    }
  ],
  "softwareSuggestions": [
    {
      "@type": "SoftwareApplication",
      "identifier": "boot",
      "name": "boot",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=boot"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "devtools",
      "name": "devtools",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=devtools"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "directlabels",
      "name": "directlabels",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=directlabels"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "dismo",
      "name": "dismo",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=dismo"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "doParallel",
      "name": "doParallel",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=doParallel"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "expm",
      "name": "expm",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=expm"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "gdistance",
      "name": "gdistance",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=gdistance"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "gganimate",
      "name": "gganimate",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=gganimate"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "ggrepel",
      "name": "ggrepel",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=ggrepel"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "ggtern",
      "name": "ggtern",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=ggtern"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "ggthemes",
      "name": "ggthemes",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=ggthemes"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "gplots",
      "name": "gplots",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=gplots"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "HardyWeinberg",
      "name": "HardyWeinberg",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=HardyWeinberg"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "hierfstat",
      "name": "hierfstat",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=hierfstat"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "igraph",
      "name": "igraph",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=igraph"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "iterpc",
      "name": "iterpc",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=iterpc"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "knitr",
      "name": "knitr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=knitr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "label.switching",
      "name": "label.switching",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=label.switching"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "leaflet",
      "name": "leaflet",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=leaflet"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "leaflet.minicharts",
      "name": "leaflet.minicharts",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=leaflet.minicharts"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "markdown",
      "name": "markdown",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=markdown"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "mmod",
      "name": "mmod",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=mmod"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "networkD3",
      "name": "networkD3",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=networkD3"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "parallel",
      "name": "parallel"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "pca3d",
      "name": "pca3d",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=pca3d"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "pegas",
      "name": "pegas",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=pegas"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "pheatmap",
      "name": "pheatmap",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=pheatmap"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "plotly",
      "name": "plotly",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=plotly"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "poppr",
      "name": "poppr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=poppr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "proxy",
      "name": "proxy",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=proxy"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "purrr",
      "name": "purrr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=purrr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "qvalue",
      "name": "qvalue",
      "provider": {
        "@id": "https://www.bioconductor.org",
        "@type": "Organization",
        "name": "Bioconductor",
        "url": "https://www.bioconductor.org"
      },
      "sameAs": "https://bioconductor.org/packages/release/bioc/html/qvalue.html"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "RColorBrewer",
      "name": "RColorBrewer",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=RColorBrewer"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "Rcpp",
      "name": "Rcpp",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=Rcpp"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rgl",
      "name": "rgl",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rgl"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rmarkdown",
      "name": "rmarkdown",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rmarkdown"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rrBLUP",
      "name": "rrBLUP",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rrBLUP"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "scales",
      "name": "scales",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=scales"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "seqinr",
      "name": "seqinr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=seqinr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "shinyBS",
      "name": "shinyBS",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=shinyBS"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "shinyjs",
      "name": "shinyjs",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=shinyjs"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "shinythemes",
      "name": "shinythemes",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=shinythemes"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "shinyWidgets",
      "name": "shinyWidgets",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=shinyWidgets"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "SIBER",
      "name": "SIBER",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=SIBER"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "snpStats",
      "name": "snpStats",
      "provider": {
        "@id": "https://www.bioconductor.org",
        "@type": "Organization",
        "name": "Bioconductor",
        "url": "https://www.bioconductor.org"
      },
      "sameAs": "https://bioconductor.org/packages/release/bioc/html/snpStats.html"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "stringi",
      "name": "stringi",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=stringi"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "terra",
      "name": "terra",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=terra"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "testthat",
      "name": "testthat",
      "version": ">= 3.0.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=testthat"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tibble",
      "name": "tibble",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tibble"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tidyverse",
      "name": "tidyverse",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tidyverse"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "vcfR",
      "name": "vcfR",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=vcfR"
    }
  ],
  "softwareRequirements": {
    "1": {
      "@type": "SoftwareApplication",
      "identifier": "R",
      "name": "R",
      "version": ">= 3.5"
    },
    "2": {
      "@type": "SoftwareApplication",
      "identifier": "adegenet",
      "name": "adegenet",
      "version": ">= 2.0.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=adegenet"
    },
    "3": {
      "@type": "SoftwareApplication",
      "identifier": "ggplot2",
      "name": "ggplot2",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=ggplot2"
    },
    "4": {
      "@type": "SoftwareApplication",
      "identifier": "dplyr",
      "name": "dplyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=dplyr"
    },
    "5": {
      "@type": "SoftwareApplication",
      "identifier": "ape",
      "name": "ape",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=ape"
    },
    "6": {
      "@type": "SoftwareApplication",
      "identifier": "crayon",
      "name": "crayon",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=crayon"
    },
    "7": {
      "@type": "SoftwareApplication",
      "identifier": "data.table",
      "name": "data.table",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=data.table"
    },
    "8": {
      "@type": "SoftwareApplication",
      "identifier": "fields",
      "name": "fields",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=fields"
    },
    "9": {
      "@type": "SoftwareApplication",
      "identifier": "foreach",
      "name": "foreach",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=foreach"
    },
    "10": {
      "@type": "SoftwareApplication",
      "identifier": "gridExtra",
      "name": "gridExtra",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=gridExtra"
    },
    "11": {
      "@type": "SoftwareApplication",
      "identifier": "MASS",
      "name": "MASS",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=MASS"
    },
    "12": {
      "@type": "SoftwareApplication",
      "identifier": "methods",
      "name": "methods"
    },
    "13": {
      "@type": "SoftwareApplication",
      "identifier": "patchwork",
      "name": "patchwork",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=patchwork"
    },
    "14": {
      "@type": "SoftwareApplication",
      "identifier": "plyr",
      "name": "plyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=plyr"
    },
    "15": {
      "@type": "SoftwareApplication",
      "identifier": "PopGenReport",
      "name": "PopGenReport",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=PopGenReport"
    },
    "16": {
      "@type": "SoftwareApplication",
      "identifier": "raster",
      "name": "raster",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=raster"
    },
    "17": {
      "@type": "SoftwareApplication",
      "identifier": "reshape2",
      "name": "reshape2",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=reshape2"
    },
    "18": {
      "@type": "SoftwareApplication",
      "identifier": "shiny",
      "name": "shiny",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=shiny"
    },
    "19": {
      "@type": "SoftwareApplication",
      "identifier": "SNPRelate",
      "name": "SNPRelate",
      "provider": {
        "@id": "https://www.bioconductor.org",
        "@type": "Organization",
        "name": "Bioconductor",
        "url": "https://www.bioconductor.org"
      },
      "sameAs": "https://bioconductor.org/packages/release/bioc/html/SNPRelate.html"
    },
    "20": {
      "@type": "SoftwareApplication",
      "identifier": "sp",
      "name": "sp",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=sp"
    },
    "21": {
      "@type": "SoftwareApplication",
      "identifier": "StAMPP",
      "name": "StAMPP",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=StAMPP"
    },
    "22": {
      "@type": "SoftwareApplication",
      "identifier": "stats",
      "name": "stats"
    },
    "23": {
      "@type": "SoftwareApplication",
      "identifier": "stringr",
      "name": "stringr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=stringr"
    },
    "24": {
      "@type": "SoftwareApplication",
      "identifier": "tidyr",
      "name": "tidyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tidyr"
    },
    "25": {
      "@type": "SoftwareApplication",
      "identifier": "utils",
      "name": "utils"
    },
    "26": {
      "@type": "SoftwareApplication",
      "identifier": "vegan",
      "name": "vegan",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=vegan"
    },
    "SystemRequirements": null
  },
  "fileSize": "29970.797KB",
  "citation": [
    {
      "@type": "ScholarlyArticle",
      "datePublished": "2018",
      "author": [
        {
          "@type": "Person",
          "givenName": "Bernd",
          "familyName": "Gruber"
        },
        {
          "@type": "Person",
          "givenName": [
            "Peter",
            "J"
          ],
          "familyName": "Unmack"
        },
        {
          "@type": "Person",
          "givenName": [
            "Oliver",
            "F"
          ],
          "familyName": "Berry"
        },
        {
          "@type": "Person",
          "givenName": "Arthur",
          "familyName": "Georges"
        }
      ],
      "name": " dartr: An r package to facilitate analysis of SNP data generated from reduced representation genome sequencing",
      "identifier": "10.1111/1755-0998.12745",
      "pagination": "691--699",
      "@id": "https://doi.org/10.1111/1755-0998.12745",
      "sameAs": "https://doi.org/10.1111/1755-0998.12745",
      "isPartOf": {
        "@type": "PublicationIssue",
        "datePublished": "2018",
        "isPartOf": {
          "@type": [
            "PublicationVolume",
            "Periodical"
          ],
          "volumeNumber": "18",
          "name": "Molecular Ecology Resources"
        }
      }
    }
  ],
  "relatedLink": [
    "https://green-striped-gecko.github.io/dartR/",
    "https://CRAN.R-project.org/package=dartR"
  ],
  "readme": "https://github.com/green-striped-gecko/dartR/blob/master/README.md",
  "contIntegration": [
    "https://github.com/green-striped-gecko/dartR/actions",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-beta.yaml",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev.yaml",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Arthur.yaml",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Bernd.yaml",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Luis.yaml",
    "https://github.com/green-striped-gecko/dartR/actions/workflows/R-CMD-check-dev_Carlo.yaml"
  ]
}

GitHub Events

Total
  • Issues event: 3
  • Watch event: 3
  • Issue comment event: 7
  • Push event: 17
  • Pull request event: 8
  • Fork event: 1
Last Year
  • Issues event: 3
  • Watch event: 3
  • Issue comment event: 7
  • Push event: 17
  • Pull request event: 8
  • Fork event: 1

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 1,559
  • Total Committers: 13
  • Avg Commits per committer: 119.923
  • Development Distribution Score (DDS): 0.746
Past Year
  • Commits: 138
  • Committers: 6
  • Avg Commits per committer: 23.0
  • Development Distribution Score (DDS): 0.594
Top Committers
Name Email Commits
Bernd.Gruber B****r@c****u 396
arthurgeorges g****s@a****u 302
Luis l****s@g****m 234
luis mijangos l****s@u****u 224
Carlo Pacioni c****i@g****m 104
green-striped-gecko b****r@c****u 87
luis mijangos L****s@g****m 87
Arthur Georges a****s@b****u 52
Bernd Gruber b****d@y****e 47
Arthur Georges A****s 16
Arthur.Georges A****s@c****u 5
Carlo Pacioni (DELWP) c****i@d****u 3
jdyen j****n@g****m 2
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 24
  • Total pull requests: 145
  • Average time to close issues: 3 months
  • Average time to close pull requests: 1 day
  • Total issue authors: 19
  • Total pull request authors: 3
  • Average comments per issue: 2.25
  • Average comments per pull request: 0.03
  • Merged pull requests: 136
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 3
  • Pull requests: 10
  • Average time to close issues: N/A
  • Average time to close pull requests: 1 day
  • Issue authors: 3
  • Pull request authors: 1
  • Average comments per issue: 0.0
  • Average comments per pull request: 0.0
  • Merged pull requests: 8
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • fernandabiologia (3)
  • AGibsonV (2)
  • konopinski (2)
  • green-striped-gecko (2)
  • burbrink (1)
  • thomasp85 (1)
  • stiatragul (1)
  • jphruska (1)
  • MehrabChowdhury1 (1)
  • jane-edgeloe (1)
  • zdzbinden (1)
  • DaniEstevezBarcia (1)
  • ghost (1)
  • rsbivand (1)
  • GregorDall (1)
Pull Request Authors
  • mijangos81 (129)
  • green-striped-gecko (21)
  • olivroy (2)
Top Labels
Issue Labels
enhancement (2) fixed - to be closed (2) bug (1)
Pull Request Labels

Dependencies

.github/workflows/R-CMD-check-beta.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check-dev.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check-dev_Arthur.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check-dev_Bernd.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check-dev_Carlo.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check-dev_Luis.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v1 composite
.github/workflows/R-CMD-check.yaml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-tinytex v2 composite
.github/workflows/pkgdown.yaml actions
  • actions/checkout v2 composite
  • r-lib/actions/setup-pandoc v1 composite
  • r-lib/actions/setup-r v1 composite
  • r-lib/actions/setup-r-dependencies v1 composite
.github/workflows/render_markdown.yaml actions
  • actions/checkout v2 composite
  • r-lib/actions/setup-pandoc v1 composite
  • r-lib/actions/setup-r v1 composite
  • r-lib/actions/setup-renv v1 composite
DESCRIPTION cran
  • R >= 3.5 depends
  • adegenet >= 2.0.0 depends
  • dartR.data * depends
  • dplyr * depends
  • ggplot2 * depends
  • MASS * imports
  • PopGenReport * imports
  • SNPRelate * imports
  • StAMPP * imports
  • ape * imports
  • crayon * imports
  • data.table * imports
  • fields * imports
  • foreach * imports
  • gridExtra * imports
  • methods * imports
  • patchwork * imports
  • plyr * imports
  • raster * imports
  • reshape2 * imports
  • shiny * imports
  • sp * imports
  • stats * imports
  • stringr * imports
  • tidyr * imports
  • utils * imports
  • vegan * imports
  • HardyWeinberg * suggests
  • RColorBrewer * suggests
  • Rcpp * suggests
  • SIBER * suggests
  • boot * suggests
  • devtools * suggests
  • directlabels * suggests
  • dismo * suggests
  • doParallel * suggests
  • expm * suggests
  • gdistance * suggests
  • gganimate * suggests
  • ggrepel * suggests
  • ggtern * suggests
  • ggthemes * suggests
  • gplots * suggests
  • grid * suggests
  • gtable * suggests
  • hierfstat * suggests
  • igraph * suggests
  • iterpc * suggests
  • knitr * suggests
  • label.switching * suggests
  • lattice * suggests
  • leaflet * suggests
  • leaflet.minicharts * suggests
  • maptools * suggests
  • markdown * suggests
  • mmod * suggests
  • networkD3 * suggests
  • parallel * suggests
  • pca3d * suggests
  • pegas * suggests
  • pheatmap * suggests
  • plotly * suggests
  • poppr * suggests
  • proxy * suggests
  • purrr * suggests
  • qvalue * suggests
  • rgl * suggests
  • rmarkdown * suggests
  • rrBLUP * suggests
  • scales * suggests
  • seqinr * suggests
  • shinyBS * suggests
  • shinyWidgets * suggests
  • shinyjs * suggests
  • shinythemes * suggests
  • snpStats * suggests
  • stringi * suggests
  • terra * suggests
  • tibble * suggests
  • tidyverse * suggests
  • vcfR * suggests
  • viridis * suggests
  • zoo * suggests